Navigation

    • Register
    • Login
    • Search
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. virgus1970
    • Continue chat with virgus1970
    • Start new chat with virgus1970
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    virgus1970

    @virgus1970

    0
    Reputation
    14
    Posts
    452
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    virgus1970 Follow

    Posts made by virgus1970

    • RE: Freedomotic

      Ok. I'm going to start next week & will keep You up to date

      posted in Freedomotic
      virgus1970
    • RE: Freedomotic

      Hi, Freedomotic!
      I'm too interesting in testing hardware (sensors & rellays) with MySensor Plugin on Pi B+. Do You need one more tester?

      posted in Freedomotic
      virgus1970
    • RE: EasyIoT server - Mysensors Raspberry Pi controller

      Why IOT-server does not supported now by MySensor.org?
      It was deleted from the list of controllers.

      posted in Controllers
      virgus1970
    • RE: [contest] My 4-in1 LED-dimmer/motion/temp-hum sensor

      To C4Vette
      How did You manage to display the data of last trip?

      posted in My Project
      virgus1970
    • RE: Motion & Relay Sensor issue

      The further observation shows that "this" comes more probably from Vera (from plugin IMHO). Then I connect GW to serial monitor nothing similar happens.
      May be reading logs of Vera can help? But I don't know where I can find them...

      posted in Troubleshooting
      virgus1970
    • RE: Reusing arduinos?

      As for me clearing the EEPROM of the board & restart of Vera (shutting off the power for couple of minutes) helped. Vera included early ignored board with the id1 (my first node was deleted from Vera about month ago).
      Thanks to hek for advise.

      posted in Troubleshooting
      virgus1970
    • RE: Motion & Relay Sensor issue

      I solved this problem by adding following code:

        // Read digital motion value
        tripped = digitalRead(DIGITAL_INPUT_SENSOR); 
          if(lastTripped != tripped) 
          { 
            if(lastTripped == 0)
            {
              Serial.print("Motion detected. Sensor value=");
              lastTripped = 1;
            }
            else
            {
              Serial.print("Sensor value=");
              lastTripped = 0;
            }  
            Serial.println(tripped);
            // Send tripped value to gw 
            gw.send(msg.set(tripped?"1":"0"));  
           }
      

      But now I have anorther problem.
      I test now two boards (Node1 & Node2). Node1 is Relay & Motion. Node2 is Relay with button. Everything is OK after start of Node1. But after motion sensor is trigged Vera begin to transmit to Node1 Asking Message constantly without any action from me. Like that:
      Скриншот 2015-03-29 20.39.17.png
      It stops only after couple of times pushing the button of Node2.
      Any ideas of solution?
      P.S. It doesn't interrupt work of both relays (Node1 & Node2) & reports of Motion sensor.

      posted in Troubleshooting
      virgus1970
    • RE: Reusing arduinos?

      As I've mentioned already, the hardware was the same, and NRF-module has a capacitor. The power for board is enough (about 1A). And this Arduino board was identified without any problem at first.
      Does any way exist to set node ID manually in this case?

      posted in Troubleshooting
      virgus1970
    • RE: Install your own controller on cheap android tvbox

      Does A20 TV Box with DomoTiga on board work with MySensors sensors?
      I read this page, but didn't receive clear answer

      posted in Controllers
      virgus1970
    • RE: Reusing arduinos?

      It looks like this
      Скриншот 2015-03-01 19.40.10.png

      posted in Troubleshooting
      virgus1970