Navigation

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

    Topics created by Aloha

    • Aloha

      Is V_RGB Supported in OpenHAB?
      OpenHAB • • Aloha  

      3
      0
      Votes
      3
      Posts
      31
      Views

      Aloha

      Thank you @hard-shovel! It works. It doesn't store the value between reboots but I guess that's a different topic which I will look into. Cheers
    • Aloha

      Sensor flooding gateway
      Troubleshooting • • Aloha  

      4
      0
      Votes
      4
      Posts
      1493
      Views

      Aloha

      @mfalkvidd said: Uncomment Serial.println(tripped); and you'll probably see what is wrong. The print statements are there to help you debug Hehe, yes you are right. The problem is the size of my sketch. It's really on the limit, if I just uncomment 1 print statement the sketch is too big. So I have to comment out or remove something else in order to uncomment something. @BartE said: @Aloha with this statement on line 120: lastMillis = millis(); You try to put an "unsigned long" (16 bits) in to an integer (8bits) this will change also the next variable in your case "bool lastTripped" Try to change line 71: int lastMillis; into unsigned long lastMillis; Wow, I'm impressed you saw that! It's actually working now. With one less thing to worry about I might get some good sleep tonight. Thanks!
    • Aloha

      Strange data sent from sensors
      Troubleshooting • • Aloha  

      8
      0
      Votes
      8
      Posts
      2236
      Views

      hek

      Yes, wait is totally fine.
    • Aloha

      Interrupt with gw.wait?
      Development • • Aloha  

      3
      0
      Votes
      3
      Posts
      2381
      Views

      hek

      @frankiboy Sounds reasonable. Al''add it to the TODO list.
    • Aloha

      LE33ACZ problems
      Hardware • • Aloha  

      7
      0
      Votes
      7
      Posts
      5290
      Views

      mlava

      @Aloha I am having the same issue. If I disconnect the regulator I get a radio error. With it connected, nothing appears in serial monitor at all. Did you ever figure it out?
    • Aloha

      Execute function in sensor
      Development • • Aloha  

      3
      0
      Votes
      3
      Posts
      1047
      Views

      Aloha

      Thank you hek! I actually got it to work exactly the way I want.