Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. chippey5
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by chippey5

    • chippey5

      Relay Actuator not working
      Troubleshooting • • chippey5  

      14
      0
      Votes
      14
      Posts
      3492
      Views

      Warren

      My sensors for Temperature, Humidity, Motion, Light level, and Door sensors were all working well, however, my dimmers, relays and switches were intermittent at best. I tried all the suggestions here and had no improvement. I monitored one of my node that had a relay and did see any on or off commands coming to the relay. PROBLEM SOLVED I thought the NRF24L01 on the ethernet gateway might not be transmitting reliably, so i changed it out. Every switch, dimmer and relay work perfectly !
    • chippey5

      MySensors.h error when compiling: "No forward link or gateway feature activated"
      Troubleshooting • • chippey5  

      12
      0
      Votes
      12
      Posts
      4969
      Views

      Nca78

      @TheoL it is. When you define a radio, it defines MY_RADIO_FEATURE // Enable radio "feature" if one of the radio types was enabled #if defined(MY_RADIO_NRF24) || defined(MY_RADIO_RFM69) || defined(MY_RS485) #define MY_RADIO_FEATURE #endif Same thing when you define a gateway : #if defined(MY_GATEWAY_SERIAL) || defined(MY_GATEWAY_W5100) || defined(MY_GATEWAY_ENC28J60) || defined(MY_GATEWAY_ESP8266) || defined(MY_GATEWAY_MQTT_CLIENT) #define MY_GATEWAY_FEATURE Then at the end if MY_RADIO_FEATURE and MY_GATEWAY_FEATURE are not defined it generates this compilation error #if !defined(MY_GATEWAY_FEATURE) && !defined(MY_RADIO_FEATURE) #error No forward link or gateway feature activated. This means nowhere to send messages! Pretty pointless. #endif