Search Results - MEL PICBASIC Forum


Search:

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

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    1,125

    Re: Avoiding too many GOSUBs, possible?

    [QUOTE=CuriousOne;154813]Hello.
    I have some code, which, based on value of the X variable (changes from 1 to 30)
    Should call some GOSUBs as shown below:



    IF X=1 THEN GOSUB ONE
    IF X=2 THEN...
  2. Thread: Season wishes

    by Amoque
    Replies
    2
    Views
    3,505

    Re: Season wishes

    Thank you, Ioannis. Here in the US, much of the season has come and gone, but I know that other regions celebrate differently and I cannot imagine that it is in poor taste to wish everyone seasonal...
  3. Replies
    9
    Views
    3,069

    Re: When Driving An Indicator L.E.D.

    Take a look at charlieplexing if you'd like to see LED indicators taken to the extreme. Not saying this applies to your question, but it will give you some insight into how cleverly these simple...
  4. Replies
    15
    Views
    54,907

    Re: Converting PULSIN reading to RPM, from PC Fan?

    It makes very little difference now that you've managed a method that works, but there is a pretty good read on measuring frequency with Pulsin here:...
  5. Replies
    6
    Views
    41,709

    Re: 3 digit 7-Seg serial Display

    Perhaps I am not following your idea clearly, but it seems the problem is bigger than you state...

    Up until 599 seconds the display may read minutes and seconds like: M.SS with no problem, but...
  6. Thread: Menu building

    by Amoque
    Replies
    9
    Views
    26,774

    Re: Menu building

    You are correct and what you suggest is exactly my strategy. However, it is necessary to have simple means to correct in response to unforeseen circumstances. I often will cancel dosing when I am on...
  7. Thread: Menu building

    by Amoque
    Replies
    9
    Views
    26,774

    Re: Menu building

    I have/ am looking at the BASIC ESP modules, but I hesitate to get bogged down with a learning curve - my community of fish are greatly inconvenienced by my lack of knowledge. That said, I am reading...
  8. Thread: Menu building

    by Amoque
    Replies
    9
    Views
    26,774

    Re: Menu building

    I am leaning toward a Bluetooth module... as you suggest. I see here (in the forum) there are some discussed, but I know next to nothing for myself. If anyone has an example, a recommendation - or...
  9. Thread: Menu building

    by Amoque
    Replies
    9
    Views
    26,774

    Menu building

    I hope the new year finds everyone well.

    I'm looking for strategy rather than programming help and I hope experience or a clever approach can simplify what has turned into an arduous task. I am...
  10. Thread: MCS is Crashing

    by Amoque
    Replies
    43
    Views
    66,071

    Re: MCS is Crashing

    I find it highly unlikely that it has anything at all to do with PBP (other than the obvious interruption to it). If so, I would think every user (having the exact same files loaded) would have the...
  11. Replies
    5
    Views
    4,397

    Re: 12LF1572 Support

    For those of you waiting on the edge of your seat for resolution... Somewhere I've missed an update. Newest version of PBP3 is 3.0.9 an offers support for several chips 3.0.4 does not. I suppose it...
  12. Replies
    5
    Views
    4,397

    Re: 12LF1572 Support

    I have verified that I have "gold". Oddly, it is difficult to do from the product directly (I couldn't find anywhere that there's a designation in plain language). I had to log on to my account and...
  13. Replies
    5
    Views
    4,397

    Re: 12LF1572 Support

    After installing MPLABB 8.92, I am still unable to find any support for 12F1572. Perhaps I have "issues" elsewhere. Using Microcode Studio 5.0.0.0 and Compiler version is PBPX 3.0.4.4. MeLabs...
  14. Replies
    5
    Views
    4,397

    12LF1572 Support

    I see here: http://www.pbp3.com/devicelist.html that PBP3 supports the 12F1572, but I find no support files in my installation. Am I missing an update/ upgrade? Possibly I am to copy/ modify some...
  15. Re: Electrical Issue: PIC input false triggering, Signal Noise suspected.

    No offense, but I hope you are forced back here regularly as this build progresses. I would love to feel (in some small FREE way) that I had helped to make it come together. I've seen many genius...
  16. Re: Electrical Issue: PIC input false triggering, Signal Noise suspected.

    I'm not a professional; I'm a hobbyist. My only qualification is a lack of expertise that has lead to many similar issues - odd, inconsistent behavior that seemingly comes from nowhere. For me, it...
  17. Thread: Round the clock

    by Amoque
    Replies
    27
    Views
    18,502

    Re: Round the clock

    I do not follow the conversation well enough to speak in context, but in doing a similar thing I found the solution to calculate direction and distance separately; then, once I'd accurately...
  18. Re: PWM of voltage input to PIC - will it damage the chip?

    I think that you might easily do both with the same chip. Google "transistor as switch" this will allow all five LEDS to ramp-up from the same PWM output without issue (and the power needed to run...
  19. Replies
    38
    Views
    18,799

    Re: different software times, impossible?

    It is, I understand, also possible to run more than one pic from a clock source. You mentioned connecting pics serially, but I do not see this as a solution; however, two (or more) sync'ed to the...
  20. Re: how building sound tone and runing other instructions in background

    I think there are several methods you ay use.

    You could have an interrupt routine that beeps for a short time, repeatedly. In the interrupt set a flag that increments with each very short beep...
  21. Replies
    10
    Views
    8,216

    Re: Easy way to do multiple write statements ?

    You spoke in your original post of an "easier way", while this is not exactly what you asked, I find it easier and so offer...

    Keeping track of hours and minutes separately is unnecessary. For me,...
  22. Replies
    2
    Views
    2,774

    Re: Email to close relays

    My own preference would be some flavor of Raspberry Pi - bit of overkill I imagine, but very doable and cheap enough.
  23. Replies
    13
    Views
    9,542

    Re: Hot tub temp control

    I suppose it is... But, I would more typically describe PWM as a means of limiting apparent output to a percentage of fully on. As an example, with an LED: If the modulation is fast enough that the...
  24. Replies
    13
    Views
    9,542

    Re: Hot tub temp control

    I don't think you need PID or PWM, just a thermometer and a relay should do fine I would think.

    If it takes one minute to heat the tub one degree, and it cools at the same rate, then you may keep...
  25. Thread: Clock question

    by Amoque
    Replies
    4
    Views
    3,782

    Re: Clock question

    Below is my clock code. I wrote it a couple years ago and never looked at it again, but as I recall it worked and, as it says in the comments, it works with 3 buttons to set the date/ time.

    When...
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4