Skip to content
  • 0 Votes
    3 Posts
    15 Views
    OldSurferDudeO
    I concur with @TheoL, though I understand the desire to have better control over your interface. The MySensors serial interface is well documented. You might consider MQTT as a transport mechanism. MQTT Explorer allows you to view the data which makes debugging easier. Good luck with your project.
  • Any good home automation controllers?

    Controllers
    13
    0 Votes
    13 Posts
    3k Views
    A
    If you’re already using MySensors, Home Assistant is definitely worth a look - great community, lots of integrations, and works really well with DIY setups. OpenHAB is another solid option if you prefer something more configurable.
  • Pjon Script

    General Discussion
    10
    0 Votes
    10 Posts
    127 Views
    S
    @David-Jenkins Hi, good evening!! I can't find these examples. Can you share the link to the sketches? Thank you so much!
  • Gateway restarts a midnight

    Troubleshooting
    11
    1 Votes
    11 Posts
    211 Views
    skywatchS
    Hah! Been there, done that. Well done on finding the source of your issue and sharing the solution so others might benefit! Kudos.
  • 3 Votes
    26 Posts
    782 Views
    OldSurferDudeO
    My guess is that the the leakage power captured can only supply that amount of current (at the specified voltage)
  • Bypass radio connection

    Development
    5
    0 Votes
    5 Posts
    95 Views
    A
    That is a great clarification on the use of #define MY_PASSIVE_NODE! Knowing that it works by simply letting the node skip all the 'normal' stuff (which wasn't needed anyway) and that there are no major disadvantages for this specific use case is super useful.
  • nRF24L01+ missing capacitor aka "magic finger"

    Hardware
    10
    2 Votes
    10 Posts
    64 Views
    TheoLT
    @ben999 Yes I have 3 gateways 1 nfrf and 1 rm for production. And 1 nrf gw for test. The test gw is on a separare PI I might run a 4th gw. Also an rfm on the test machine.
  • Hacking a Neato Robotics BotVac Connected

    General Discussion
    71
    3 Votes
    71 Posts
    79k Views
    T
    Sorry to necro but, you may be interested to hear that someone published a solution to controlling Neato locally on GitHub. Unfortunately it requires a hardware modification in form of an ESP32 or similar board, but with it you should be able to use your Neato with Home Assistant, for example. I haven't yet tested this myself, but the solution looks worth a look and the instructions seem clear enough. https://github.com/Philip2809/neato-connected As I've received the dreaded shutdown email, I'll be looking into this once I have more time to tinker.
  • MySensors node not working with Alexa on my Vera

    Vera
    2
    0 Votes
    2 Posts
    36 Views
    David JenkinsD
    @dbemowsk said in MySensors node not working with Alexa on my Vera: Is there anyone that either still uses a Vera controller or knowssomething about how they work with Alexa? My issue is that my thermostat bridge had the Arduino Pro Mini die and I had to flash a new one. When I did this I had to re-discover it with MySensors in Vera. I then had to delete the node from Alexa to add the new one, but when I go to the list of discoverable devices it doesn't show up. I can control it fin on the Vera but can't add it to Alexa. Sounds tricky! If Vera controls it fine, the issue is likely with the Alexa integration, sometimes a full “refresh” or restarting the Alexa app after re-adding the device in Vera helps it show up.
  • Problem with LGT-RF-Nano

    Hardware
    9
    0 Votes
    9 Posts
    167 Views
    A
    I’ve had similar trouble with the LGT RF Nano — the radio part is a bit picky. What fixed it for me was lowering the data rate in the sketch and giving it a proper capacitor on VCC (even a small 4.7µF helped a lot). Also worth trying a different CE/CSN pin setup; these clones don’t always match the “standard” wiring perfectly. After that mine started talking to the gateway without any drama.
  • Sleeping with RFM95 ?

    Hardware
    8
    1 Votes
    8 Posts
    64 Views
    TheoLT
    I learned my lessons about bread boards. Slowly replacing my cheap AliExpress ones with good quality ones. I blew up 2 nano's and 1 nrf this week because of a bad breadboard
  • AI: What is the future of Wikis and Forums?

    General Discussion
    10
    1 Votes
    10 Posts
    157 Views
    TheoLT
    Well it's nice that it can help people who want it. Maybe not all.
  • Any European alternatives for PCB Manufacturing?

    Hardware
    1
    1 Votes
    1 Posts
    32 Views
    No one has replied
  • Flame Sensor Not Triggering Setup

    Troubleshooting
    21
    0 Votes
    21 Posts
    219 Views
    OldSurferDudeO
    @skywatch @sindrome73 This is what I do, too. Note that it is wait(), which is a MySensors function and not delay(), an Arduino function. wait() checks for MySensors messages, delay() halts all process, thus a message might be missed.
  • My final Gateway version

    My Project
    4
    4
    0 Votes
    4 Posts
    120 Views
    TheoLT
    Added some 3d sketches so you can see what I'm trying to accomplish. Unless ofc someone will tell me this is a bad idea
  • Forum Search not working?

    Troubleshooting
    17
    0 Votes
    17 Posts
    231 Views
    TheoLT
    @mfalkvidd A while ago I tinkered with Media Wiki running on a docker. If I remember correctly you can set access for authors moderators etc. But I forgot, I need to spin that docker up any time soon anyway. Because it contains my network documentation and I need to update it. I'll let you know.
  • Sump Pit Monitor

    My Project
    7
    6
    2 Votes
    7 Posts
    157 Views
    TheoLT
    @OldSurferDude So if I get my circuit to work, that would by 22 times less (on average). Well I'm doing too many things at the same time. :)
  • 0 Votes
    3 Posts
    53 Views
    TheoLT
    You don't check for which sensor the message is send - message.getSensor() - and in both cases you set the relays both on Like Skywatch said. So you could do something like: if ( message.type == V_STATUS ) { // check if GW send a status change if ( message.getSensor() == sensor 1 ) { // handles sensor 1 } else if ( message.getSensor() == sensor 2 ) { // handles sensor 1 } ... etc }
  • set hostname using static IP

    General Discussion mysensors hostname static
    3
    0 Votes
    3 Posts
    64 Views
    TheoLT
    I did a grep on the source code and found this snipper #if defined(MY_GATEWAY_ESP8266) || defined(MY_GATEWAY_ESP32) // Turn off access point WiFi.mode(WIFI_STA); #if defined(MY_GATEWAY_ESP8266) WiFi.hostname(MY_HOSTNAME); #elif defined(MY_GATEWAY_ESP32) WiFi.setHostname(MY_HOSTNAME); #endif #if defined(MY_IP_ADDRESS) WiFi.config(_MQTT_clientIp, _gatewayIp, _subnetIp); #endif /* End of MY_IP_ADDRESS */ (void)WiFi.begin(MY_WIFI_SSID, MY_WIFI_PASSWORD, 0, MY_WIFI_BSSID); #endif MySensors uses the standard ESP libraries for this. So I expect it to work. But you need to provide at least a bit of source code. Right now it's hard to answer your question. Regarding to MySensors: A HTTP hostname can only be set for Gateways that either use Wifi or Ethernet For nodes you can provide a sketchname and that will be seen in your controller. Regarding to static non static IP addresses. I prefer to use DHCP and set that device in my router as a static IP. There I also give it another hostname. So that in case I have to replace my Gateway I can do it all in the router. Hope this helps. But please provide more info on what you're trying to achieve
  • Sensor to detect marijuana vape/smoke

    Hardware
    5
    0 Votes
    5 Posts
    551 Views
    D
    we’ve been using Triton detectors at my school for a while now, they catch both nicotine and THC vapor fast and it sends an alert right when someone vapes, even picks up small amounts. it’s probably the closest thing you’ll find for what you need.

24

Online

11.7k

Users

11.2k

Topics

113.1k

Posts