Navigation

    • Register
    • Login
    • Search
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Tags
    3. help
    Log in to post

    • openhardware.io

      💬 The Logger Machine - Short and long term serial logging
      OpenHardware.io • arduino serial help bluetooth uart logging ttl log • • openhardware.io  

      26
      2
      Votes
      26
      Posts
      4423
      Views

      sundberg84

      @terxw okey, thanks for reporting back !! Let me know if there is something else. This is a 0.5v so I'm open for improvements.
    • seji

      How to combine arduino sketches?
      Troubleshooting • arduino help sketch combine • • seji  

      1
      0
      Votes
      1
      Posts
      962
      Views

      No one has replied

    • ejtbpublic

      Sketch presentation / Vera inclusion
      Development • vera help • • ejtbpublic  

      8
      0
      Votes
      8
      Posts
      2186
      Views

      mvader

      @korttoma said: Try running the "ClearEepromConfig" example sketch from MySensors examples and then try your sketch again. Might be that there is an old "NODE_ID" being used that is conflicting with another node. If you want to use static NODE_ID you should put the following before the MySensors.h include in your sketch: #define MY_NODE_ID 14 You are also stil missing the #define MY_RADIO_NRF24 Before the MySensors include that @hek pointed out. ^^ this - I've had this happen before (just last night actually) but i recalled from when it happened in the past, found out it was using a dupe ID, ran eeprom sketch.. good to go now.
    • phate1

      First sensor ... so close but no temp reading
      Vera • temperature vera help plugin • • phate1  

      3
      0
      Votes
      3
      Posts
      2330
      Views

      SteveO1234

      I had the same problem... I just added the I_Arduino1.xml to the gateway as you suggested and it worked! Thanks. --Steve
    • blutak

      Ethernet shield help
      Troubleshooting • help ethernetgateway wiznet ethernet wiznet check wires • • blutak  

      4
      0
      Votes
      4
      Posts
      2469
      Views

      blutak

      Ive also just tried it on an arduino Uno and im still getting check wires.
    • baldsi

      all the gear, no idea
      General Discussion • gateway vera help newbie • • baldsi  

      10
      0
      Votes
      10
      Posts
      4663
      Views

      baldsi

      @maltimus - thanks, I can see the picture. frstratingly I have the Vera Edge though!
    • AbeAbeAbe

      HELP NEEDED AH!
      Development • help • • AbeAbeAbe  

      4
      0
      Votes
      4
      Posts
      1875
      Views

      hek

      @AbeAbeAbe Not a good way to gain attention. You might just piss people off. Ok, so how about using a motion sensor (pir), link barrier or a distance sensor?
    • hek

      1.4 Beta
      Announcements • help 1.4beta • • hek  

      129
      0
      Votes
      129
      Posts
      87086
      Views

      RJ_Make

      Not very nice but I think this will work.. //float temperature = dht.getTemperature(); float temperature = dht.getTemperature()*9/5 + 32; if (isnan(temperature)) { Serial.println("Failed reading temperature from DHT"); } else if (temperature != lastTemp) { lastTemp = temperature; if (!metric) { temperature = dht.getTemperature()*9/5 + 32; //dht.toFahrenheit(temperature); }