Search Results - MEL PICBASIC Forum


Search:

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

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    5,583

    Think about it - it would be commercial suicide...

    Think about it - it would be commercial suicide to post some of the more complex code and allow competitors to bring their products to market. For you this might be a hobby, for others it puts food...
  2. Certainly it WILL work if you feed a Comparator...

    Certainly it WILL work if you feed a Comparator...
  3. Replies
    8
    Views
    6,557

    I don't think ADRES will work (should have...

    I don't think ADRES will work (should have checked yesterday)... pick a different register. Woke up this morning with something bugging me about your choice... according to the Datasheet ADRES is...
  4. Replies
    8
    Views
    6,557

    As long as it doesn't adversely impact on the way...

    As long as it doesn't adversely impact on the way the PIC is configured and run, you could use any Register as storage or as a variable.

    I remember an old long retired IT Manager telling me when...
  5. Replies
    5
    Views
    6,000

    Just use something like Pheonix to put a simple...

    Just use something like Pheonix to put a simple Comms program into the F84 for PortB.7 (not PortB.0 as in your code at Post #2 above) to talk to your F628, then it's just dialogue between the two to...
  6. Replies
    5
    Views
    6,000

    This takes me back. I remember doing this at...

    This takes me back. I remember doing this at University ten years ago... (everybody at the Halls of Residence was watching free Satellite Pay-TV)!

    1. You create an EEPROM LOADER program for the...
  7. Replies
    5
    Views
    3,519

    Say no more!

    Say no more!
  8. Replies
    2
    Views
    2,601

    Across the top of my screen next to the "Forum"...

    Across the top of my screen next to the "Forum" Button is a "What's New" Button...
  9. Personally, I'd have reduced PAUSE by a couple of...

    Personally, I'd have reduced PAUSE by a couple of clicks *smiles*
  10. Yes, pretty much, but I don't think PortB.x will...

    Yes, pretty much, but I don't think PortB.x will work, so...



    ShadowPortB=0
    Loop:
    for x = 0 to 7
    If LoopLED[x] = 0 then
    LoopLED[x] = LoopCON[x]
    ShadowPortB.0(x)=ShadowPortB.0(x)^1
  11. Have as many LED's as you have pins... ...

    Have as many LED's as you have pins...


    LoopALED var BYTE
    LoopBLED var BYTE
    LoopCLED var BYTE
    LoopDLED var BYTE
    LoopELED var BYTE
    LoopFLED var BYTE
    LoopGLED var BYTE
  12. Replies
    7
    Views
    4,891

    You won't make it zero. There's hardware between...

    You won't make it zero. There's hardware between the input and output, and it takes time for the little electrons to wiggle their way through very tiny wiring. You could always strap RA2 directly...
  13. Replies
    7
    Views
    4,891

    You can cross-feed your HPWM to one of the...

    You can cross-feed your HPWM to one of the Hardware Comparators and have it invert the signal.
  14. Replies
    8
    Views
    4,843

    Rewind a week and check the comment I posted when...

    Rewind a week and check the comment I posted when you last mentioned the above on the DS1307 thread...
  15. Replies
    4
    Views
    4,526

    Hmmm... how much Test Equipment, time and...

    Hmmm... how much Test Equipment, time and patience have you got???

    (1) If you have a Frequency Counter, program for INTOSC CLKOUT and measure fosc/4 on the GPIO.4 OSCOUT pin. Adjust for 1MHz.
    ...
  16. Replies
    6
    Views
    5,500

    I speak for myself, personally, but I am sure...

    I speak for myself, personally, but I am sure most folks will follow the same principles.

    If you publicly post anything, be it code or your personal opinions, it becomes public domain. Anyone can...
  17. Replies
    7
    Views
    5,515

    You've not told us how your MCP23016 is...

    You've not told us how your MCP23016 is connected.

    Do a SEARCH on MCP23016 on this forum - there are code examples.
  18. Replies
    48
    Views
    23,886

    Malc... if you want 05:05:07 rather than 5:5:7...

    Malc... if you want 05:05:07 rather than 5:5:7 then...

    LCDOut DEC2 DecimalHours,":",DEC2 DecimalMinutes,":",DEC2 DecimalSeconds

    hmmmm... DEC2 seems to be something to look up in the manual...
  19. Replies
    11
    Views
    50,752

    Sticky: Some folks think in Binary, some in Decimal,...

    Some folks think in Binary, some in Decimal, other in Hexadecimal.

    I like Binary (when dealing with say up to 8 bits), because in my mind it immediately relates to those BIT positions in the PICs...
  20. Replies
    48
    Views
    23,886

    Never Cut & Paste without first knowing what it...

    Never Cut & Paste without first knowing what it is you're doing, otherwise I'll be tempted to put up some code so your PIC will email me the passwords to your Bank Account.

    Let's do this real slow...
  21. Replies
    11
    Views
    50,752

    Sticky: There's nothing nicer than knowing the time spent...

    There's nothing nicer than knowing the time spent in posting something has been of help - even after all the years. *smiles*
  22. Replies
    48
    Views
    23,886

    Malcolm, you can't have '&$03' for MINUTES (the...

    Malcolm, you can't have '&$03' for MINUTES (the way you have for HOURS)... but can you figure why and what value it should be if not $03? Correct that small omission and your code will run (there's...
  23. Replies
    48
    Views
    23,886

    You've set TRIS for PORTD.7 for Output? You've...

    You've set TRIS for PORTD.7 for Output?

    You've checked that anything else that share that pin is switched off (eg any Analogue or other devices).

    You've connected your LED the correct way...
  24. Replies
    48
    Views
    23,886

    Last three lines of my post Malcolm...

    Last three lines of my post Malcolm...
  25. Replies
    48
    Views
    23,886

    DecimalHours=RTCHours>>4...

    DecimalHours=RTCHours>>4
    DecimalHours=(DecimalHours&$03)*10
    DecimalHours=DecimalHours+(RTCHours&$0F)

    RTCHours is read from the DS1307. It is in BCD format.

    The first line takes bits 4 thru...
Results 1 to 25 of 98
Page 1 of 4 1 2 3 4