Navigation

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

    Posts made by billgoolsby

    • Domoticz Newby question: Access Error: 404 - Not Found, on Windows

      I did a first time install of Domoticz on Windows 7, using the default folders. On starting, I get "Access Error: 404 - Not Found, Cannot locate document: /" in the web browser. I uninstalled and reinstalled in c:\domoticz and c:\domoticz\log, with the same result.

      What do I need to do to get it working? Is there a config file I need to edit?

      posted in Domoticz
      billgoolsby
      billgoolsby
    • RE: Best options for a low current display for a battery operated node?

      @mfalkvidd, Is there an Arduino library for this module? I don't see a link for it on the product page.

      posted in Hardware
      billgoolsby
      billgoolsby
    • RE: GUIDE - NRF5 / NRF51 / NRF52 for beginners

      @alowhum ,
      So, following these steps the radio will support nrf24 protocols and you could use, for example, one of the available RF24 libraries?

      posted in Development
      billgoolsby
      billgoolsby
    • RE: Automatic LED light - high WAF inside :)

      @ben999,
      As for your last question, this line is simply converting the pin state (either HIGH or LOW) to a boolean. The right side expression evaluates to a boolean that is true when the pin is HIGH. This is assigned to the boolean variable "tripped". This makes it logically easy to use in the following IF statement.

      First question: I'm not sure why it would send every cycle. The logic of the IF statement seems correct, and since prevTripped is global, its state will be preserved between loops.

      posted in My Project
      billgoolsby
      billgoolsby
    • RE: Don't see my Arduino node device in Vera

      @dbemowsk, Wow! It worked! Thanks so much. Very happy to get to this point.

      posted in Vera
      billgoolsby
      billgoolsby
    • RE: Don't see my Arduino node device in Vera

      @r-nox, No, didn't do that - where do I go in the Vera menus to do it? I don't see anything that looks likely.

      posted in Vera
      billgoolsby
      billgoolsby
    • RE: Don't see my Arduino node device in Vera

      @dbemowsk, This is my configuration:
      0_1510018152280_screen shot of serial port setup.JPG

      posted in Vera
      billgoolsby
      billgoolsby
    • RE: Don't see my Arduino node device in Vera

      @gohan, I do have a W5100 I could try, but I thought of a way to see the serial stream between the gateway and Vera: put a TTL-to-USB serial adapter on either the TX or RX lines from the Nano. I'll try that first.

      posted in Vera
      billgoolsby
      billgoolsby
    • RE: Don't see my Arduino node device in Vera

      Another question: Is there a way to see debug output from the serial gateway? Since its USB port is connected to Vera, I don't see a way to get debug info from it.

      posted in Vera
      billgoolsby
      billgoolsby
    • Don't see my Arduino node device in Vera

      I'm new to MySensors and Vera. I have a GoControl Z-Wave thermostat installed and working in Vera, so I know that Vera is working to that extent. I built a serial gateway using the GatewaySerialNano code and a genuine Arduino Nano board. I configured the gateway in Vera and I see "MySensors Plugin" in the "unknown category" devices. I then built a temp and humidity node using an Arduino Pro and a BME280 sensor. I don't see anything in Vera that indicates the BME280 is present. Here's the node code:

      // WNG mods
      // 8/08/17 - Used MySensors example plus Sparkfun BME280 example to make a sketch
      //   that uses BME280 sensor. Not tested yet.
      
      //-----------------------------------------------------------------
      // Sparkfun example here:
      // https://github.com/sparkfun/SparkFun_BME280_Arduino_Library/blob/master/examples/I2C_ReadAllData/I2C_ReadAllData.ino
      // Original MySensors sketch here:  
      // https://www.mysensors.org/build/humidity
      
      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * REVISION HISTORY
       * Version 1.0: Henrik EKblad
       * Version 1.1 - 2016-07-20: Converted to MySensors v2.0 and added various improvements - Torben Woltjen (mozzbozz)
       * 
       * DESCRIPTION
       * This sketch provides an example of how to implement a humidity/temperature
       * sensor using a DHT11/DHT-22.
       *  
       * For more information, please visit:
       * http://www.mysensors.org/build/humidity
       * 
       */
      
      // Enable debug prints
      #define MY_DEBUG
      
      // Enable and select radio type attached 
      #define MY_RADIO_NRF24
      
      #include <SparkFunBME280.h>
      #include <MySensors.h>  
      //BME Library allows either I2C or SPI, so include both.
      #include "Wire.h"  //I'm using I2C
      #include "SPI.h"
      
      //Global sensor object
      BME280 mySensor;
      
      // Set this offset if the sensor has a permanent small offset to the real temperatures
      #define SENSOR_TEMP_OFFSET 0
      
      // Sleep time between sensor updates (in milliseconds)
      // Must be >1000ms for DHT22 and >2000ms for DHT11
      static const uint64_t UPDATE_INTERVAL = 5000;
      
      // Force sending an update of the temperature after n sensor reads, so a controller showing the
      // timestamp of the last update doesn't show something like 3 hours in the unlikely case, that
      // the value didn't change since;
      // i.e. the sensor would force sending an update every UPDATE_INTERVAL*FORCE_UPDATE_N_READS [ms]
      static const uint8_t FORCE_UPDATE_N_READS = 10;
      
      #define CHILD_ID_HUM  0
      #define CHILD_ID_TEMP 1
      
      float lastTemp;
      float lastHum;
      uint8_t nNoUpdatesTemp;
      uint8_t nNoUpdatesHum;
      bool metric = false;
      
      MyMessage msgHum(CHILD_ID_HUM, V_HUM);
      MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);
      
      
      void presentation()  
      { 
        // Send the sketch version information to the gateway
        sendSketchInfo("BME280_Node", "1.0");
      
        // Register all sensors to gw (they will be created as child devices)
        present(CHILD_ID_HUM, S_HUM);
        present(CHILD_ID_TEMP, S_TEMP);
      
        metric = getControllerConfig().isMetric;
      }
      
      
      void setup()
      {
        //set up BME280
        //For I2C, enable the following and disable the SPI section
        mySensor.settings.commInterface   = I2C_MODE;
        mySensor.settings.I2CAddress      = 0x77;
        mySensor.settings.runMode         = 3; //Normal mode
        mySensor.settings.tStandby        = 0;  //0.5ms
        mySensor.settings.filter          = 0; //filter off
        mySensor.settings.tempOverSample  = 1;
        mySensor.settings.pressOverSample = 1;
        mySensor.settings.pressOverSample = 1;
      
        Serial.begin(115200);
        delay(3000);
        Serial.print("Program Started\n");
        Serial.print("Starting BME280... result of .begin(): 0x");
      	
        //Calling .begin() causes the settings to be loaded
        delay(10);  //Make sure sensor had enough time to turn on. BME280 requires 2ms to start up.
        Serial.println(mySensor.begin(), HEX);
      
        Serial.print("Displaying ID, reset and ctrl regs\n");
        Serial.print("ID(0xD0): 0x");
        Serial.println(mySensor.readRegister(BME280_CHIP_ID_REG), HEX);
        Serial.print("Reset register(0xE0): 0x");
        Serial.println(mySensor.readRegister(BME280_RST_REG), HEX);
        Serial.print("ctrl_meas(0xF4): 0x");
        Serial.println(mySensor.readRegister(BME280_CTRL_MEAS_REG), HEX);
        Serial.print("ctrl_hum(0xF2): 0x");
        Serial.println(mySensor.readRegister(BME280_CTRL_HUMIDITY_REG), HEX);
        Serial.print("\n\n");
      	
        // Sleep for the time of the minimum sampling period to give the sensor time to power up
        // (otherwise, timeout errors might occure for the first reading)
        delay(1000);
      }
      
      
      void loop()      
      {  
        // Force reading sensor, so it works also after sleep()
        float temperature = mySensor.readTempF();
        float humidity    = mySensor.readFloatHumidity();
        
        // Get temperature
        temperature = mySensor.readTempF();
        if (isnan(temperature)) {
          Serial.println("Failed reading temperature!");
        } else if (temperature != lastTemp || nNoUpdatesTemp == FORCE_UPDATE_N_READS) {
          // Only send temperature if it changed since the last measurement or if we didn't send an update for n times
          lastTemp = temperature;
          // Reset no updates counter
          nNoUpdatesTemp = 0;
          temperature += SENSOR_TEMP_OFFSET;
          send(msgTemp.set(temperature, 1));
      
          #ifdef MY_DEBUG
          Serial.print("T: ");
          Serial.println(temperature);
          #endif
        } else {
          // Increase no update counter if the temperature stayed the same
          nNoUpdatesTemp++;
        }
      
        // Get humidity
        humidity = mySensor.readFloatHumidity();
        if (isnan(humidity)) {
          Serial.println("Failed reading humidity!");
        } else if (humidity != lastHum || nNoUpdatesHum == FORCE_UPDATE_N_READS) {
          // Only send humidity if it changed since the last measurement or if we didn't send an update for n times
          lastHum = humidity;
          // Reset no updates counter
          nNoUpdatesHum = 0;
          send(msgHum.set(humidity, 1));
      
          #ifdef MY_DEBUG
          Serial.print("H: ");
          Serial.println(humidity);
          #endif
        } else {
          // Increase no update counter if the humidity stayed the same
          nNoUpdatesHum++;
        }
      
        // Sleep for a while to save energy
        sleep(UPDATE_INTERVAL); 
      }
      
      
      

      Here's the debug output of the BME280 node, including startup and a few sensor transmissions:

      0 MCO:BGN:INIT NODE,CP=RNNNA--,VER=2.1.1
      4 TSM:INIT
      4 TSF:WUR:MS=0
      12 TSM:INIT:TSP OK
      14 TSF:SID:OK,ID=1
      16 TSM:FPAR
      51 TSF:MSG:SEND,1-1-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
      149 TSF:MSG:READ,0-0-1,s=255,c=3,t=8,pt=1,l=1,sg=0:0
      153 TSF:MSG:FPAR OK,ID=0,D=1
      2060 TSM:FPAR:OK
      2060 TSM:ID
      2062 TSM:ID:OK
      2064 TSM:UPL
      2068 TSF:MSG:SEND,1-1-0-0,s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=OK:1
      2076 TSF:MSG:READ,0-0-1,s=255,c=3,t=25,pt=1,l=1,sg=0:1
      2082 TSF:MSG:PONG RECV,HP=1
      2086 TSM:UPL:OK
      2088 TSM:READY:ID=1,PAR=0,DIS=1
      2093 TSF:MSG:SEND,1-1-0-0,s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=OK:0100
      2101 TSF:MSG:READ,0-0-1,s=255,c=3,t=15,pt=6,l=2,sg=0:0100
      2109 TSF:MSG:SEND,1-1-0-0,s=255,c=0,t=17,pt=0,l=5,sg=0,ft=0,st=OK:2.1.1
      2119 TSF:MSG:SEND,1-1-0-0,s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=OK:0
      4128 TSF:MSG:SEND,1-1-0-0,s=255,c=3,t=11,pt=0,l=11,sg=0,ft=0,st=OK:BME280_Node
      4139 TSF:MSG:SEND,1-1-0-0,s=255,c=3,t=12,pt=0,l=3,sg=0,ft=0,st=OK:1.0
      4147 TSF:MSG:SEND,1-1-0-0,s=0,c=0,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
      4157 TSF:MSG:SEND,1-1-0-0,s=1,c=0,t=6,pt=0,l=0,sg=0,ft=0,st=OK:
      4163 MCO:REG:REQ
      4167 TSF:MSG:SEND,1-1-0-0,s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=OK:2
      4175 TSF:MSG:READ,0-0-1,s=255,c=3,t=27,pt=1,l=1,sg=0:1
      4179 MCO:PIM:NODE REG=1
      4184 MCO:BGN:STP
      Program Started
      Starting BME280... result of .begin(): 0x60
      Displaying ID, reset and ctrl regs
      ID(0xD0): 0x60
      Reset register(0xE0): 0x0
      ctrl_meas(0xF4): 0x27
      ctrl_hum(0xF2): 0x0
      
      
      8220 MCO:BGN:INIT OK,TSP=1
      8230 TSF:MSG:SEND,1-1-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:74.1
      T: 74.14
      8243 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      8249 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8255 MCO:SLP:TPD
      8257 MCO:SLP:WUP=-1
      8267 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      8275 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8282 MCO:SLP:TPD
      8284 MCO:SLP:WUP=-1
      8294 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      8302 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8308 MCO:SLP:TPD
      8310 MCO:SLP:WUP=-1
      8321 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      8329 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8335 MCO:SLP:TPD
      8337 MCO:SLP:WUP=-1
      8347 TSF:MSG:SEND,1-1-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:74.2
      T: 74.16
      8357 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      8366 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8372 MCO:SLP:TPD
      8374 MCO:SLP:WUP=-1
      8384 TSF:MSG:SEND,1-1-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:74.1
      T: 74.14
      8394 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      8402 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8409 MCO:SLP:TPD
      8411 MCO:SLP:WUP=-1
      8419 MCO:SLP:MS=5000,SMS=0,I1=255,M1=255,I2=255,M2=255
      8425 MCO:SLP:TPD
      8427 MCO:SLP:WUP=-1
      8435 TSF:MSG:SEND,1-1-0-0,s=1,c=1,t=0,pt=7,l=5,sg=0,ft=0,st=OK:74.1
      T: 74.12
      8448 TSF:MSG:SEND,1-1-0-0,s=0,c=1,t=1,pt=7,l=5,sg=0,ft=0,st=OK:76.3
      H: 76.28
      

      This looks normal to me, yes?

      My question: Why don't I see the node in Vera? There must be something I haven't set up.
      Thanks!

      posted in Vera
      billgoolsby
      billgoolsby
    • Boards manager package does not install Sensebender gateway

      Using Arduino 1.8.3, I installed the SAMD boards package so I can now choose board = Arduino Zero. Next, since I have the Sensebender gateway board, I inserted the URL for package_mysensors.org_index.json into the Additional Boards Manager URLs in preferences. , as directed on the github.com/mysensors/ArduinoBoards page. However, this doesn't seem to do anything. The list of boards doesn't include any that weren't already there; in particular, the Sensebender gateway is not listed. Is there something else I need to do?

      posted in Troubleshooting
      billgoolsby
      billgoolsby
    • RE: Can't compile serial gateway example, MySigningNone.h not found

      So the library is entirely interrupt-driven? Is there a document describing the library's architecture and design intent?

      posted in Troubleshooting
      billgoolsby
      billgoolsby
    • RE: Can't compile serial gateway example, MySigningNone.h not found

      SensebenderGatewaySerial.ino has empty functions for setup(), presentation() and loop(). How can it possibly work with no code in these?

      posted in Troubleshooting
      billgoolsby
      billgoolsby
    • Can't compile serial gateway example, MySigningNone.h not found

      I'm a newbie at MySensors; haven't yet got a gateway or node running. I bought a SenseBender gateway board and want get it working. I'm trying to compile the serial gateway example found at https://codebender.cc/sketch:47514#SerialGateway.ino. I chose this file because it seems to have complete working code for a gateway, as opposed to MySensors\examples\GatewaySerial\GatewaySerial.ino, in which setup(), presentation() and loop() are all empty, therefore I figure it isn't a complete example and won't do anything, and being a newbie I don't know how to fill in those parts.

      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * DESCRIPTION
       * The ArduinoGateway prints data received from sensors on the serial link. 
       * The gateway accepts input on seral which will be sent out on radio network.
       *
       * The GW code is designed for Arduino Nano 328p / 16MHz
       *
       * Wire connections (OPTIONAL):
       * - Inclusion button should be connected between digital pin 3 and GND  
       * - RX/TX/ERR leds need to be connected between +5V (anode) and digital pin 6/5/4 with resistor 270-330R in a series
       *
       * LEDs (OPTIONAL):
       * - To use the feature, uncomment WITH_LEDS_BLINKING in MyConfig.h
       * - RX (green) - blink fast on radio message recieved. In inclusion mode will blink fast only on presentation recieved
       * - TX (yellow) - blink fast on radio message transmitted. In inclusion mode will blink slowly
       * - ERR (red) - fast blink on error during transmission error or recieve crc error 
       * 
       */
      
      #define NO_PORTB_PINCHANGES  
      
      #include <MySigningNone.h>
      #include <MyTransportRFM69.h>
      #include <MyTransportNRF24.h>
      //#include <MyHwATMega328.h>
      #include <MySigningAtsha204Soft.h>
      #include <MySigningAtsha204.h>
      
      #include <SPI.h>  
      #include <MyParserSerial.h>  
      #include <MySensor.h>  
      #include <stdarg.h>
      #include <PinChangeInt.h>
      #include "GatewayUtil.h"
      
      #define INCLUSION_MODE_TIME 1 // Number of minutes inclusion mode is enabled
      #define INCLUSION_MODE_PIN  3 // Digital pin used for inclusion mode button
      #define RADIO_ERROR_LED_PIN 4  // Error led pin
      #define RADIO_RX_LED_PIN    6  // Receive led pin
      #define RADIO_TX_LED_PIN    5  // the PCB, on board LED
      
      // NRFRF24L01 radio driver (set low transmit power by default) 
      MyTransportNRF24 transport(RF24_CE_PIN, RF24_CS_PIN, RF24_PA_LEVEL_GW);
      //MyTransportRFM69 transport;
      
      // Message signing driver (signer needed if MY_SIGNING_FEATURE is turned on in MyConfig.h)
      //MySigningNone signer;
      //MySigningAtsha204Soft signer;
      //MySigningAtsha204 signer;
      
      // Hardware profile 
      MyHwATMega328 hw;
      
      // Construct MySensors library (signer needed if MY_SIGNING_FEATURE is turned on in MyConfig.h)
      // To use LEDs blinking, uncomment WITH_LEDS_BLINKING in MyConfig.h
      #ifdef WITH_LEDS_BLINKING
      MySensor gw(transport, hw /*, signer*/, RADIO_RX_LED_PIN, RADIO_TX_LED_PIN, RADIO_ERROR_LED_PIN);
      #else
      MySensor gw(transport, hw /*, signer*/);
      #endif
      
      char inputString[MAX_RECEIVE_LENGTH] = "";    // A string to hold incoming commands from serial/ethernet interface
      int inputPos = 0;
      boolean commandComplete = false;  // whether the string is complete
      
      void parseAndSend(char *commandBuffer);
      
      void output(const char *fmt, ... ) {
         va_list args;
         va_start (args, fmt );
         vsnprintf_P(serialBuffer, MAX_SEND_LENGTH, fmt, args);
         va_end (args);
         Serial.print(serialBuffer);
      }
      
        
      void setup()  
      { 
        gw.begin(incomingMessage, 0, true, 0);
      
        setupGateway(INCLUSION_MODE_PIN, INCLUSION_MODE_TIME, output);
      
        // Add interrupt for inclusion button to pin
        PCintPort::attachInterrupt(pinInclusion, startInclusionInterrupt, RISING);
      
      
        // Send startup log message on serial
        serial(PSTR("0;0;%d;0;%d;Gateway startup complete.\n"),  C_INTERNAL, I_GATEWAY_READY);
      }
      
      void loop()  
      { 
        gw.process();
      
        checkButtonTriggeredInclusion();
        checkInclusionFinished();
        
        if (commandComplete) {
          // A command wass issued from serial interface
          // We will now try to send it to the actuator
          parseAndSend(gw, inputString);
          commandComplete = false;  
          inputPos = 0;
        }
      }
      
      
      /*
        SerialEvent occurs whenever a new data comes in the
       hardware serial RX.  This routine is run between each
       time loop() runs, so using delay inside loop can delay
       response.  Multiple bytes of data may be available.
       */
      void serialEvent() {
        while (Serial.available()) {
          // get the new byte:
          char inChar = (char)Serial.read(); 
          // if the incoming character is a newline, set a flag
          // so the main loop can do something about it:
          if (inputPos<MAX_RECEIVE_LENGTH-1 && !commandComplete) { 
            if (inChar == '\n') {
              inputString[inputPos] = 0;
              commandComplete = true;
            } else {
              // add it to the inputString:
              inputString[inputPos] = inChar;
              inputPos++;
            }
          } else {
             // Incoming message too long. Throw away 
              inputPos = 0;
          }
        }
      }
      
      

      I did a complete fresh install of Arduino 1.8.3, then used library manager to install MySensors 2.1.1. I see that Arduino put the library in My Documents\Arduino\libraries, with all the .h and .cpp files in \cores.

      When I try to compile, I get MySigningNone.h not found. I found it on the web and put it in \cores, but that didn't help - still not found. If I comment out MySigningNone.h, other of the .h files are found either, e.g. MyTransportRFM69.h.

      So, I don't understand why the files aren't found if I put them in \cores. Where should they go? Why aren't they included in the distribution?

      Does anyone have an example of complete code for a simple working serial gateway and a simple node? I'd like to first try a node that has a temp & humidity sensor on it.
      I admit I'm finding it frustrating to get started with MySensors, though I think it will be great once I get it working.

      posted in Troubleshooting
      billgoolsby
      billgoolsby
    • RE: Where is the default Sensebender gateway sketch?

      Thanks for including it there.

      posted in Hardware
      billgoolsby
      billgoolsby
    • RE: Where is the default Sensebender gateway sketch?

      Thanks - I found the examples folder and the gateway sketch here
      https://github.com/mysensors/MySensors/blob/development/examples/SensebenderGatewaySerial/SensebenderGatewaySerial.ino

      It would be nice if this link were included on the Sensebender gateway page,
      https://www.mysensors.org/hardware/sensebender-gateway

      That would help newbies find it.

      posted in Hardware
      billgoolsby
      billgoolsby
    • Where is the default Sensebender gateway sketch?

      I've searched the forum and done google searches but can't find the github or other page where the default Sensebender gateway sketch is stored. Help!

      I'm new to the mysensors idea - just ordered a gateway board.

      posted in Hardware
      billgoolsby
      billgoolsby