Recent content by lbenson

  1. lbenson

    [ RESOLU] Convertisseur dc ac

    Alternatively, you can buy DC water heater elements. I don't know how they would handle varying DC voltages, but it's possible that the most simple solar charge controller with a suitably low constant voltage emulating a battery charge level (say 24V) could work. Your high of 130V DC could be a...
  2. lbenson

    Hippy Version 3.0

    Hippy--many thanks for all your contributions--concise code, insight and analysis about problems, and especially your effect on building the community here. It's a community where if I post that I'm stuck on something before going to bed in North America, there's a good chance that by the time I...
  3. lbenson

    How do i create a HOLD-in button function?

    Oops--was thinking of millisecond timer, as with some other micros. Change to 2 after the setting to 0 would work.
  4. lbenson

    How do i create a HOLD-in button function?

    M2 code: if pButton = 1 then: time=0: do while pButton=1 and time < 2000: loop: endif Any other code you want might be in the loop.
  5. lbenson

    My finished projects

    Truly impressive, with many elegant cases. I never get around to that part. Keep on keeping on. I'm 77, and need continuing inspiration from the older generation.:giggle:
  6. lbenson

    Toy Servo Control Question:

    I am sure there are differences by server, but I have found that for my pan and tilt rivercam, the servos hold if you give them 2 pulses (but not with just one). Live minutes ago: I'm happy to be in Florida, 1,440 miles away as the crow flies (if the crow could fly that far over water most of...
  7. lbenson

    Verification error

    Nice job. Re photos, if uploaded to the forum, 1) they won't go away if an outside site disappears or changes or subscription expires, and 2) you get a good preview in your post.
  8. lbenson

    automated cat feeder

    Right--welcome.
  9. lbenson

    08M2 actual pin4 change to adc function?

    Thanks. I should have specified what I would like to be able to power: an ESP32 S2Mini, which would be powered off most of the time, but would be brought back up to send a temperature change detected by the 08M2 (or other signal, such as motion-detected or additional temperature sensors). If I...
  10. lbenson

    08M2 actual pin4 change to adc function?

    This is clever, and I have an immediate use. Can you provide code (are pokes required?) and suggest a suitable n-ch mosfet (preferably one which would work at 3V3)?
  11. lbenson

    automated cat feeder

    Note that if your code has indentation to help make its structure easier to follow (which arguably every program should have--especially one which reaches the length yours has), you can preserve it in the forum by enclosing it in the forum tags "[ code]" and "[ /code]" (without the spaces...
  12. lbenson

    RC PWM to drive a Cytron MD20A motor controller

    Note that DEBUG is notorious for causing unexpected problems with timings. I personally never use it--always use SERTXD to get just the information needed.
  13. lbenson

    Light house simulation

    How many LEDs do you want? 29 12V outputs, 256 timed events: 20M2, MCP23017, ULN2803 Or the 45 LED version (without the ULN2803s):
  14. lbenson

    Editor locking up during simulation

    Gramps--note that if you enclose your code in the tags, "[ code]" and "[ /code]" (with no spaces), any formatting (indenting) you had will be preserved. (And note that indenting is good to help readers understand your code--and also to help you understand it if you look at it at a later time.)
Top