i haven't the 16F1786 in microcode studio list (pbp246), what can i do?


Closed Thread
Results 1 to 11 of 11
  1. #1

    Default i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    it's not supported? there is a solution?

  2. #2
    Join Date
    Oct 2005
    Location
    Sweden
    Posts
    3,516


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    Hi,

    This is probably not what you want to hear but 2.46 is now 11 years old, released in 2005 while the 16F1786 seems to have hit the market around 7 years later.
    Support for it was added to PBP in version 3.0.7 back in 2013.

    I don't know if it's possible to "manually" add support for that chip in the 2.46 but what you can obviously do is to upgrade you version to something a "slightly" newer.

    /Henrik.

  3. #3
    Join Date
    Mar 2016
    Posts
    2


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    hi, i hv some problem for my project

    how to do it if u want condition like this
    ( temperature from 29C to 35C, the bulb will ON that means the bulb will ON if temperature <29C until temperature = 35C
    but when temperature >35C the bulb will OFF until the temperature reach to or below 29C and that condition will repeat)

    sorry for my word, i hope someone can give a some advise or hint to help me
    thanks

  4. #4
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,795


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    Your question is a bit contradictory.

    You say to have the bulb ON if temp is between 29-35 C.

    Then trying to explain more you say bulb ON if temp < 29 and until temp reaches 35.

    Please clarify what exactly you want.

    Ioannis

  5. #5
    Join Date
    Oct 2009
    Posts
    583


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    Quote Originally Posted by Student92 View Post
    hi, i hv some problem for my project

    how to do it if u want condition like this
    ( temperature from 29C to 35C, the bulb will ON that means the bulb will ON if temperature <29C until temperature = 35C
    but when temperature >35C the bulb will OFF until the temperature reach to or below 29C and that condition will repeat)

    sorry for my word, i hope someone can give a some advise or hint to help me
    thanks
    What exactly is your project, it sounds very much like a thermostat of some description ?

    i haven't the 16F1786 in microcode studio list (pbp246), what can i do?
    What is the reason for choosing a 16F1786 over other PICs that are supported in the version of PBP you have ?

    So you want the light on when the temperature is between 29c and 35c, then you could try something like this.. crude but should work

    Code:
    temperature var byte
    lamp var PORTA.1
    
    If temperature <29 or temperature >35 then low lamp
    If temperature =>29 or temperature =<35 then high lamp
    Last edited by Scampy; - 11th March 2016 at 18:20.

  6. #6


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    Quote Originally Posted by HenrikOlsson View Post
    Hi,

    This is probably not what you want to hear but 2.46 is now 11 years old, released in 2005 while the 16F1786 seems to have hit the market around 7 years later.
    Support for it was added to PBP in version 3.0.7 back in 2013.

    I don't know if it's possible to "manually" add support for that chip in the 2.46 but what you can obviously do is to upgrade you version to something a "slightly" newer.

    /Henrik.
    pickit 2.61 don't recognize the pic16f1786, can you help me?

  7. #7
    Join Date
    Oct 2009
    Posts
    583


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    Quote Originally Posted by lutherblisset View Post
    pickit 2.61 don't recognize the pic16f1786, can you help me?
    Like I asked before... what specific function of the 16F1786 are you using that dictates the use of this one chip. Unless it's something unique to the 16F1786, then simply use a chip that is supported in the version of PBP and MPASM your have.

  8. #8


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    the 12bit analogic ports and the chance to set the reference voltage to 1.024,2.048,4.096 volts for them

  9. #9
    Join Date
    Oct 2009
    Posts
    583


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    Ok, I'm confused (easily done !) - your other post mentions you are monitoring temperatures as you stated you want conditional statements to result in some output being on between a set temperature range. What probe are you using? and why do you need the voltage reference and 12 bit ADC ?

    Ignore me... it wasn't you that generated the post on temperatures....
    Last edited by Scampy; - 13th March 2016 at 01:08.

  10. #10


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    he was student92, not me. He asked for monitoring temperature, i dont know why he ask it in this thread....

  11. #11
    Join Date
    May 2013
    Location
    australia
    Posts
    2,383


    Did you find this post helpful? Yes | No

    Default Re: i haven't the 16F1786 in microcode studio list (pbp246), what can i do?

    have a look at this
    https://forum.sparkfun.com/viewtopic.php?f=4&t=30792


    or the sure way , get a pickit3

Similar Threads

  1. Microcode Studio Plus
    By Archangel in forum PBP Wish List
    Replies: 7
    Last Post: - 31st October 2013, 02:05
  2. using MicroCode Studio
    By Max_Gauss in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 8th September 2011, 20:04
  3. Microcode studio
    By Stargazer3141 in forum General
    Replies: 4
    Last Post: - 28th January 2011, 23:49
  4. microcode studio plus
    By c_moore in forum General
    Replies: 2
    Last Post: - 26th July 2010, 11:45
  5. MicroCode Studio Plus
    By ozarkshermit in forum General
    Replies: 0
    Last Post: - 31st December 2009, 00:27

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts