Navigation

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

    Topics created by MikeF

    • MikeF

      Problems with V_TEXT in MySensors 2.0.0
      Development • • MikeF  

      4
      0
      Votes
      4
      Posts
      1147
      Views

      AWI

      @MikeF Good to hear that it worked for you. Possible just coincidence that it worked in V1.5. Reception of information on battery powered nodes is always an issue. The radio consumes a lot of energy while listening. There are a few new options in V2 to get around that. Take a look at the "Sleeping" section of the API Description
    • MikeF

      How to send initial RGB dimmer values to Domoticz?
      Domoticz • • MikeF  

      3
      0
      Votes
      3
      Posts
      2196
      Views

      MikeF

      Thanks, @BumblingWelsh , I'll check this out - but it looks as though it's for a Neopixel strip, and I'm using an analogue one.
    • MikeF

      RGB colorpicker
      Development • • MikeF  

      1
      0
      Votes
      1
      Posts
      1222
      Views

      No one has replied

    • MikeF

      RGBW Controller kit
      My Project • • MikeF  

      11
      4
      Votes
      11
      Posts
      5831
      Views

      MikeF

      OK, I'm starting to understand HSV better - and I've been reading this thread. I understand that Domoticz currently (although gizmocuz states this is due to change) only allows you to change Hue and Brightness (V), but not Saturation. Is there any other way of changing all 3 values, and sending them to a MySensors RGB node (*) - e.g., using V_TEXT (with suitable conversion from HSV to RGB)? (* I'm currently looking at RGB, not RGBW, as I'm using a separate white strip - I've set up a simple sketch with V_RGB, and V_DIMMER for white.)
    • MikeF

      Dsiplaying dimmer percentage in Domoticz
      Domoticz • • MikeF  

      10
      0
      Votes
      10
      Posts
      6105
      Views

      A Former User

      Yes, I have not modified the example from MySensors: // Retrieve the power or dim level from the incoming request message int requestedLevel = atoi(message.data); // Adjust incoming level if this is a V_LIGHT variable update [0 == off, 1 == on] requestedLevel *= ( message.type == V_LIGHT ? 100 : 1 ); // Clip incoming level to valid range of 0 to 100 requestedLevel = requestedLevel > 100 ? 100 : requestedLevel; requestedLevel = requestedLevel < 0 ? 0 : requestedLevel; Serial.print( "Changing level to " ); Serial.print( requestedLevel ); Serial.print( ", from " ); Serial.println( currentLevel ); fadeToLevel( requestedLevel ); Its strange, because the µC receives the same value for 7% and for example 78% in Domoticz... So its clear that it can't distinguish between them.
    • MikeF

      Temperature / humidity node with OLED display
      My Project • • MikeF  

      9
      8
      Votes
      9
      Posts
      17519
      Views

      fleinze

      I experienced some burn in effect on this SSD1306 displays after a few months of running, so turning the display off is a good idea!
    • MikeF

      Breakout boards - a plea for consistency!
      General Discussion • • MikeF  

      5
      0
      Votes
      5
      Posts
      1975
      Views

      mfalkvidd

      https://xkcd.com/927/
    • MikeF

      New Raspberry Pi to NRF24l01+ Shield
      Hardware • • MikeF  

      9
      0
      Votes
      9
      Posts
      5739
      Views

      nutcracker

      @ceech thanks for the board - arrived via eBay today! Looking forward to tinkering!
    • MikeF

      Multisensor node using Ceech board
      My Project • • MikeF  

      64
      4
      Votes
      64
      Posts
      28311
      Views

      jumping

      Hello, I use a My Sensors 2.0 version of "Multisensor node using @ceech board" but I have this error: TSP:MSG:SEND 5-5-0-0 s=255,c=3,t=11,pt=0,l=12,sg=0,ft=1,st=ok:JMP-LightLux TSP:MSG:SEND 5-5-0-0 s=255,c=3,t=12,pt=0,l=3,sg=0,ft=0,st=ok:1.0 TSP:MSG:SEND 5-5-0-0 s=10,c=0,t=13,pt=0,l=0,sg=0,ft=0,st=ok: TSP:MSG:SEND 5-5-0-0 s=11,c=0,t=13,pt=0,l=0,sg=0,ft=0,st=ok: TSP:MSG:SEND 5-5-0-0 s=1,c=0,t=16,pt=0,l=0,sg=0,ft=0,st=ok: Request registration... TSP:MSG:SEND 5-5-0-0 s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=ok:2 TSP:MSG:READ 0-0-5 s=255,c=3,t=27,pt=1,l=1,sg=0:1 Node registration=1 Init complete, id=5, parent=0, distance=1, registration=1 BH1750 lux: 387TSP:MSG:SEND 5-5-0-0 s=1,c=1,t=37,pt=3,l=2,sg=0,ft=0,st=ok:387 Batt: 3.74V ; 414.08mA Solar: 0.00V ; 0.00 mA; charge: Yes BattPct: 61% TSP:MSG:SEND 5-5-0-0 s=10,c=1,t=38,pt=7,l=5,sg=0,ft=0,st=ok:3.738 TSP:MSG:SEND 5-5-0-0 s=10,c=1,t=39,pt=7,l=5,sg=0,ft=0,st=ok:0.414 TSP:MSG:SEND 5-5-0-0 s=11,c=1,t=38,pt=7,l=5,sg=0,ft=0,st=ok:0.000 TSP:MSG:SEND 5-5-0-0 s=11,c=1,t=39,pt=7,l=5,sg=0,ft=0,st=ok:0.000 !TSP:MSG:SEND 5-5-0-0 s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=fail:61 after that the node doesn't send data to gateway. Do you have some ideas to solve the problem? thanks