Search Results - MEL PICBASIC Forum


Search:

Type: Posts; User: nomad; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Replies
    10
    Views
    5,455

    Re: owout not working on 16f77 ? (hangs)

    the 12f683 and 16f77 are both 14bit. ( It works on 16f917, and tried both pm and mpasm prior to posting)
    As I mentioned getting pbp3, my wife gave me that *oh heck no* look, (I just bought some...
  2. Replies
    10
    Views
    5,455

    Re: owout not working on 16f77 ? (hangs)

    well, it appears I need to upgrade to pbp3. :/
    that bites lol.

    using the 3 demo it didn't hang at the owout.
  3. Replies
    10
    Views
    5,455

    Re: owout not working on 16f77 ? (hangs)

    that code is on the 12f683 and works fine.

    for the 16f77 ive stripped it all down to


    @ __CONFIG _BODEN_ON & _CP_OFF & _PWRTE_ON & _WDT_ON & _HS_OSC

    DEFINE OSC 16

    ADCON1 = 7
  4. Replies
    10
    Views
    5,455

    Re: owout not working on 16f77 ? (hangs)

    this is driving me nuts lol... still cant figure out why it hangs on the owout command, no matter how it's done, what port, config settings, etc.. Have no problems at all with it on other pics.
    ...
  5. Replies
    10
    Views
    5,455

    Re: owout not working on 16f77 ? (hangs)

    using it to communicate with ds18b20 temperature sensors. I've used this mode for them on other pics and it's worked fine.
    can use decimal notation instead of binary (1 for %00000001, 2 for...
  6. Re: please friends help a beginner with i2chello people I'm in big trouble i2c, I'm u

    sorry, i'm lost as how to help. your code should not compile at all.
    (I tried in microcode studio, fixed all the errors, and posted the result.)
    Are you sure you've selected 16f628a? it has...
  7. Replies
    3
    Views
    6,959

    Re: LCDOUT with a 12F683

    That link to Mike's project posted by Darrel Taylor has been updated.
    here

    no longer needs 2 bytes and is serout, debug, etc compatible!.. pretty slick actually (My opinion)


    (is there...
  8. Re: please friends help a beginner with i2chello people I'm in big trouble i2c, I'm u

    also need to add "TRISB = 0" somewhere before using lcdout. (default is input, need to set to output)
    Also, make sure Low voltage programming is disabled, it uses portb.4.
  9. Re: please friends help a beginner with i2chello people I'm in big trouble i2c, I'm u

    The lcd defines are not correct format.

    The 16f628a does not use adcon1, but you need to turn off comparators that are on porta.

    'ADCON1 = 7 'Set PORTA and PORTE to digital
    CMCON = 7 'turn...
  10. Replies
    10
    Views
    5,455

    owout not working on 16f77 ? (hangs)

    no matter what I do, I cannot get owout to work on these 16f77's.

    works on 12f683 (used to read the serial numbers)
    tried it on other 16f's and always worked perfectly.

    this works on 16f917:...
  11. Replies
    129
    Views
    226,336

    Honestly, don't waste your time messing with the...

    Honestly, don't waste your time messing with the JDM style programmers. pickit2?'s are very cheap, there's even clones that also work quite well. After all the trial and error, adding parts...
  12. Replies
    2
    Views
    22,838

    16F946 pcb footprint (64 tqfp)

    Not a schematic question, but closest category I suppose..

    Does anyone have a footprint for this chip for any of the "free" pcb programs?

    been using expresspcb, diptrace, eagle lite..
  13. do the debounce in software. (short pause) or if...

    do the debounce in software. (short pause) or if it's off to do something else once triggered, you may not even need debounce..

    you can search for debounce examples from here...
  14. Thread: Freqout ? ? ?

    by nomad
    Replies
    2
    Views
    4,416

    Freqout in PBP has a max of 32,767hz. If using a...

    Freqout in PBP has a max of 32,767hz. If using a pic you could set up hpwm registers for 38khz then toggle the output for a pulse (tris), but I'm not familiar with a stamps capabilities or the stamps...
  15. Thread: Thank You!

    by nomad
    Replies
    4
    Views
    3,607

    Joe

    lol, Joe, as Dora the explorer says "backpack backpack".... that one project searching for your holy grail, erm the serial backpack.. Learned TONS from figuring out how why that was all done, and how...
  16. Replies
    16
    Views
    13,954

    WOW... how simple to put the digitloop at the...

    WOW... how simple to put the digitloop at the end, MUCH cleaner. less if'ing
    was looking at it backwards lol , maybe I should try standing on my head..

    and I started to do a loop (for) deal,...
  17. Replies
    6
    Views
    3,651

    would it be easier to use WRITE X,VAR.BYTE1...

    would it be easier to use

    WRITE X,VAR.BYTE1
    WRITE Y,VAR.BYTE0

    (I know, not the question lol)
  18. Thread: Thank You!

    by nomad
    Replies
    4
    Views
    3,607

    Thank You!

    As I'm piddling about trying to learn all this with some ideas in mind, I keep thinking I must remember to thank all the people from here for all the help I've gotten. sure, you may not have answered...
  19. Replies
    16
    Views
    13,954

    Don't pause, don't gosub

    ahhhh, there's the kick i needed.
    I also am working on a 3digit 7seg led display, using modified code
    (read: massively mangled stolen code :P)
    and was doing the same thing..
    (pausing, and...
  20. Replies
    129
    Views
    226,336

    you can't just apply +5, and +12 for power and...

    you can't just apply +5, and +12 for power and Vpp and have it work. there's timing issues, when it applies the voltage, which is first applied, to even get into programming mode. these voltages need...
  21. Replies
    4
    Views
    3,588

    lol, now that I asked I found in microchips App...

    lol, now that I asked I found in microchips App note AN234, (Hardware Techniques for PICmicro Microcontrollers)... there's a section about sharing LCD data lines for other i/o.

    day late dollar...
  22. Thread: blinking basic

    by nomad
    Replies
    9
    Views
    5,261

    and another person hooked on pics

    and another person hooked on pics
  23. Replies
    9
    Views
    8,659

    curious, but doesn't PBP run the clock and data...

    curious, but doesn't PBP run the clock and data as open collector? (playing with tris).
    the 628a doesn't have i2c hardware so would have to be done by PBP.
    as I've seen the define to make the...
  24. Replies
    4
    Views
    3,291

    that's an interesting way to quit smoking.....

    that's an interesting way to quit smoking.. *cough* I'll have to try it!
  25. Replies
    4
    Views
    3,588

    Groovy!

    Thanks, I just wanted to see if there was something obvious I was missing.

    The lcd is one of the standard hd4470? parallel 2 line types, so I don't think the 16f914 is going to help me there,...
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4