Navigation

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

    aaronik19

    @aaronik19

    0
    Reputation
    2
    Posts
    142
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    aaronik19 Follow

    Best posts made by aaronik19

    This user hasn't posted anything yet.

    Latest posts made by aaronik19

    • Basic Setup Network

      Sorry I know that I am writing a stupid question but I am a little bit confused. I am trying to make a very basic node to node program; from one NRF24 to another NRF24. Send command from 1 module to light LED on the other module. I read more than twice the API (http://www.mysensors.org/download/sensor_api_15) but still get ground! Is there a basic network please to light led on the other side and I will continue from there please?

      Sorry once again, but I really need some help to get on.

      posted in General Discussion
      aaronik19
      aaronik19
    • serial monitor

      Dear All,

      I am new to MySensors and I tried my first project. On the serial MOnitor on Arduino, the controller is sending the following code find parent send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:

      What does this means?

      My code is very basic to try the program:

      #include <MySensor.h>
      #include <SPI.h>
      
      #define ID 0
      #define OPEN 1
      #define CLOSE 0
      
      MySensor gw;
      MyMessage msg(ID, V_TRIPPED);
      
      void setup() {
        gw.begin();
        gw.present(ID, S_DOOR);
      
      }
      
      void loop() {
        gw.send(msg.set(OPEN));
        delay(5000);
      
      }```
      
      Thanks for your help
      posted in General Discussion
      aaronik19
      aaronik19