Navigation

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

    Posts made by pettib

    • RE: šŸ’¬ Building a Raspberry Pi Gateway

      Hi
      I also have problem to get the NRF24L01+ chip to work with the RPi3.

      I find that the masterbranch don't recognize the board as RPi3 and sets SoC and Type as unknown.
      But if i take development branch it“s detecting RPi3 and seems to work correct.

      This is result from development Branch configure:
      [SECTION] Detecting target machine.
      [OK] machine detected: SoC=BCM2837, Type=rpi3, CPU=armv7l.
      [SECTION] Detecting SPI driver.
      [OK] SPI driver detected:BCM.
      [SECTION] Detecting init system.
      [OK] init system detected: systemd.
      [SECTION] Saving configuration.
      [SECTION] Cleaning previous builds.
      [OK] Finished.

      This is result from Master Branch configure:
      [SECTION] Detecting target machine.
      [OK] machine detected: SoC=unknown, Type=unknown, CPU=armv7l.
      [SECTION] Checking GPIO Sysfs.
      [OK] /sys/class/gpio/export found
      [SECTION] Detecting SPI driver.
      [OK] SPI driver detected:SPIDEV.
      [SECTION] Detecting init system.
      [OK] init system detected: systemd.
      [SECTION] Saving configuration.
      [SECTION] Cleaning previous builds.
      [OK] Finished.

      This is the result from cat /proc/cpuinfo:

      Hardware : BCM2835
      Revision : a02082

      //Peter

      posted in Announcements
      pettib
      pettib
    • RE: Irrigation Controller (up to 16 valves with Shift Registers)

      @gohan exactly what I meant.

      posted in My Project
      pettib
      pettib
    • RE: Irrigation Controller (up to 16 valves with Shift Registers)

      Do anyone has a working solution to connect this project to a main valve who has to open when running the zones ?

      posted in My Project
      pettib
      pettib
    • RE: šŸ’¬ Building a Raspberry Pi Gateway

      Hi everyone.
      I“m trying to build a new homeController with the following parts / software.

      Raspberry Pi 3
      Home Assistant
      MySensors
      Tellstick
      Mosquitto MQTT Broker

      I got everything working beside the MySensors. I“m trying to connect the NRF 24L01+ chip directly to the RPI with help from https://www.mysensors.org/build/raspberry.

      I want to use MQTT between MySensors and HomeAssistant
      The MQTT broker is working when i“m testing it.
      The Mosquitto is configurated with username and Password in the config of Mosquitto.

      The config i“m using when Make Mysensors is the following:
      ./configure --my-gateway=mqtt --my-controller-ip-address=127.0.0.1 --my-mqtt-publish-topic-prefix=mysensors-out --my-mqtt-subscribe-topic-prefix=mysensors-in --my-mqtt-client-id=mygateway1 --my-transport=nrf24 --my-rf24-irq-pin=15

      I also changed in the file /examples_linux/mysgw.cpp
      #define MY_MQTT_USER "My User"
      #define MY_MQTT_PASSWORD "My Password"

      When i“m running the command: sudo systemctl status mysgw I got following result.

      ā— mysgw.service - MySensors Gateway daemon
      Loaded: loaded (/etc/systemd/system/mysgw.service; enabled)
      Active: active (running) since tis 2016-12-27 18:52:34 CET; 25min ago
      Main PID: 1405 (mysgw)
      CGroup: /system.slice/mysgw.service
      └─1405 /usr/local/bin/mysgw

      dec 27 19:18:10 HomeAssistant mysgw[1405]: failed to connect
      dec 27 19:18:10 HomeAssistant mysgw[1405]: socket: Too many open files
      dec 27 19:18:10 HomeAssistant mysgw[1405]: failed to connect
      dec 27 19:18:10 HomeAssistant mysgw[1405]: socket: Too many open files
      dec 27 19:18:10 HomeAssistant mysgw[1405]: failed to connect
      dec 27 19:18:10 HomeAssistant mysgw[1405]: socket: Too many open files
      dec 27 19:18:10 HomeAssistant mysgw[1405]: failed to connect
      dec 27 19:18:10 HomeAssistant mysgw[1405]: socket: Too many open files
      dec 27 19:18:10 HomeAssistant mysgw[1405]: failed to connect
      dec 27 19:18:10 HomeAssistant mysgw[1405]: socket: Too many open files

      When trying to run command sudo mysgw -d it shows following info in a endless loop:
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1
      mysgw: Attempting MQTT connection...
      mysgw: connected to 127.0.0.1

      Please help figure this out.

      //PeTi

      posted in Announcements
      pettib
      pettib
    • RE: DHT 22 battery sensor MySensors 2.01

      @dbemowsk I run that way now. Same time for both with debug and without. It works well with debug activated but not with debug inactive. Same time on both.

      posted in Troubleshooting
      pettib
      pettib
    • RE: DHT 22 battery sensor MySensors 2.01

      @dbemowsk
      @dbemowsk
      The reason that I use different sleep time is that this is a battery powered unit, and when debug I don't want to whait for 15 minutes to see the readings. I don't understand why the long sleep will stop me from get the readings ? It's the sleep between readings I change with this function.

      posted in Troubleshooting
      pettib
      pettib
    • RE: DHT 22 battery sensor MySensors 2.01

      Hi again.

      Now i made a sketch that almost work.
      If i run it with debug enabled it works fine but when i run it with debug disabled it dosen“t work.
      Please help me to find the problem.

      /**
       * 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
      //#define MY_RADIO_RFM69
      //#define MY_RS485
      #define MY_NODE_ID 23 //Uterum
      
      #include <SPI.h>
      #include <MySensors.h>  
      #include <DHT.h>
      #include <Wire.h>
      
      #define         READ_SAMPLE_INTERVAL         (10)    //define how many samples you are going to take in normal operation
      #define         READ_SAMPLE_TIMES            (5)     //define the time interal(in milisecond) between each samples in  
      #define         VREF 3.3f
      
      // Set this to the pin you connected the DHT's data pin to
      #define DHT_DATA_PIN 3
      
      // Set this offset if the sensor has a permanent small offset to the real temperatures
      #define SENSOR_TEMP_OFFSET -3.4
      
      // Sleep time between sensor updates (in milliseconds)
      // Must be >1000ms for DHT22 and >2000ms for DHT11
      static const uint64_t UPDATE_INTERVAL = 60000;
      
      // 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
      
      #ifdef MY_DEBUG 
        unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)
      #else 
        unsigned long SLEEP_TIME = 900000; // Sleep time between reads (in milliseconds)
      #endif
      
      
      #define SKETCH_NAME "Temp_Humid_Bat_Uterum"                // Change to a fancy name you like
      #define SKETCH_VERSION "2.1"                    // Your version
      
      float lastTemp;
      float lastHum;
      uint8_t nNoUpdatesTemp;
      uint8_t nNoUpdatesHum;
      bool metric = true;
      
      MyMessage msgHum(CHILD_ID_HUM, V_HUM);
      MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);
      DHT dht;
      
      //=========================
      // BATTERY VOLTAGE DIVIDER SETUP
      // 1M, 470K divider across battery and using internal ADC ref of 1.1V
      // Sense point is bypassed with 0.1 uF cap to reduce noise at that point
      // ((1e6+470e3)/470e3)*1.1 = Vmax = 3.44 Volts
      // 3.44/1023 = Volts per bit = 0.003363075
      #define VBAT_PER_BITS 0.003363075  
      #define VMIN 1.9                                  //  Vmin (radio Min Volt)=1.9V (564v)
      #define VMAX 3.0                                  //  Vmax = (2xAA bat)=3.0V (892v)
      int batteryPcnt = 0;                              // Calc value for battery %
      int batLoop = 0;                                  // Loop to help calc average
      int batArray[3];                                  // Array to store value for average calc.
      int BATTERY_SENSE_PIN = A0;                       // select the input pin for the battery sense point
      //=========================
      
      void presentation()  
      { 
        // Send the sketch version information to the gateway
        sendSketchInfo(SKETCH_NAME, SKETCH_VERSION);
      
        // 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 = getConfig().isMetric;
      }
      
      
      void setup()
      {
        dht.setup(DHT_DATA_PIN); // set data pin of DHT sensor
        if (UPDATE_INTERVAL <= dht.getMinimumSamplingPeriod()) {
          Serial.println("Warning: UPDATE_INTERVAL is smaller than supported by the sensor!");
        }
        // 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)
        sleep(dht.getMinimumSamplingPeriod());
        analogReference(INTERNAL);             // For battery sensing
        delay(2000);
      
        
        #ifdef MY_DEBUG 
          Serial.println("***Debug Activated***");
          Serial.print("Sleep_Time: ");
          Serial.print((SLEEP_TIME / 1000)/60);
          Serial.println(" min");    
        #else 
          Serial.println("***Debug Deactivated***");
          Serial.print("Sleep_Time: ");
          Serial.print((SLEEP_TIME / 1000)/60);
          Serial.println(" min");  
        #endif
      
      }
      
      
      void loop()      
      {  
        // Force reading sensor, so it works also after sleep()
        dht.readSensor(true);
      
        // Get temperature from DHT library
        float temperature = dht.getTemperature();
        if (isnan(temperature)) {
          Serial.println("Failed reading temperature from DHT!");
        } 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;
          if (!metric) {
            temperature = dht.toFahrenheit(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 from DHT library
        float humidity = dht.getHumidity();
        if (isnan(humidity)) {
          Serial.println("Failed reading humidity from DHT");
        } 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++;
        }
      
          //Read batteries
        batM();
        //Sleep!
        sleep(SLEEP_TIME);
      }
      
      
      void batM() //The battery calculations
      {
         delay(500);
         // Battery monitoring reading
         int sensorValue = analogRead(BATTERY_SENSE_PIN);    
         delay(500);
         
         // Calculate the battery in %
         float Vbat  = sensorValue * VBAT_PER_BITS;
         int batteryPcnt = static_cast<int>(((Vbat-VMIN)/(VMAX-VMIN))*100.);
         Serial.print("Battery percent: "); Serial.print(batteryPcnt); Serial.println(" %");  
         
         // Add it to array so we get an average of 3 (3x20min)
         batArray[batLoop] = batteryPcnt;
        
         if (batLoop > 2) {  
           batteryPcnt = (batArray[0] + batArray[1] + batArray[2] + batArray[3]);
           batteryPcnt = batteryPcnt / 3;
       
         if (batteryPcnt > 100) {
           batteryPcnt=100;
       }
       
           Serial.print("Battery Average (Send): "); Serial.print(batteryPcnt); Serial.println(" %");
             sendBatteryLevel(batteryPcnt);
             batLoop = 0;
            }
           else 
           {
           batLoop++;
           }
      }
      
      posted in Troubleshooting
      pettib
      pettib
    • RE: DHT 22 battery sensor MySensors 2.01

      @dbemowsk can you please share your sketch ?
      And witch library for dht22 are you using ?

      //PT

      posted in Troubleshooting
      pettib
      pettib
    • RE: DHT 22 battery sensor MySensors 2.01

      @Maurice-Krijtenberg
      I'm using an existing board so everything is already connected. I have the sensor on pin 3. Sadly it was not that easy šŸ¤”

      posted in Troubleshooting
      pettib
      pettib
    • DHT 22 battery sensor MySensors 2.01

      Hi
      I have changed to MySensors 2.01 and trying to fix my sketches.
      Are you or somebody else able to locate the error in my sketch. I can“t read the temp and humid.
      The hardware is the same as i used with my old sketch, so it will work.

      Here are the debug:

      0 MCO:BGN:INIT NODE,CP=RNNNA--,VER=2.0.1-beta
      4 TSM:INIT
      10 TSM:INIT:TSP OK
      12 TSM:INIT:STATID=22
      14 TSF:SID:OK,ID=22
      15 TSM:FPAR
      34 TSF:MSG:SEND,22-22-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
      2041 !TSM:FPAR:NO REPLY
      2043 TSM:FPAR
      2062 TSF:MSG:SEND,22-22-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
      2460 TSF:MSG:READ,50-50-22,s=255,c=3,t=8,pt=1,l=1,sg=0:1
      2465 TSF:MSG:FPAR OK,ID=50,D=2
      2540 TSF:MSG:READ,0-0-22,s=255,c=3,t=8,pt=1,l=1,sg=0:0
      2545 TSF:MSG:FPAR OK,ID=0,D=1
      4070 TSM:FPAR:OK
      4071 TSM:ID
      4072 TSM:ID:OK
      4074 TSM:UPL
      4076 TSF:MSG:SEND,22-22-0-0,s=255,c=3,t=24,pt=1,l=1,sg=0,ft=0,st=OK:1
      4083 TSF:MSG:READ,0-0-22,s=255,c=3,t=25,pt=1,l=1,sg=0:1
      4088 TSF:MSG:PONG RECV,HP=1
      4090 TSM:UPL:OK
      4092 TSM:READY
      4094 TSF:MSG:SEND,22-22-0-0,s=255,c=3,t=15,pt=6,l=2,sg=0,ft=0,st=OK:0100
      4102 TSF:MSG:READ,0-0-22,s=255,c=3,t=15,pt=6,l=2,sg=0:0100
      4108 TSF:MSG:SEND,22-22-0-0,s=255,c=0,t=17,pt=0,l=10,sg=0,ft=0,st=OK:2.0.1-beta
      4118 TSF:MSG:SEND,22-22-0-0,s=255,c=3,t=6,pt=1,l=1,sg=0,ft=0,st=OK:0
      6126 TSF:MSG:SEND,22-22-0-0,s=255,c=3,t=11,pt=0,l=14,sg=0,ft=0,st=OK:Temp_Humid_Bat
      6135 TSF:MSG:SEND,22-22-0-0,s=255,c=3,t=12,pt=0,l=3,sg=0,ft=0,st=OK:2.0
      6142 TSF:MSG:SEND,22-22-0-0,s=0,c=0,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
      6150 TSF:MSG:SEND,22-22-0-0,s=1,c=0,t=6,pt=0,l=0,sg=0,ft=0,st=OK:
      6156 MCO:REG:REQ
      6159 TSF:MSG:SEND,22-22-0-0,s=255,c=3,t=26,pt=1,l=1,sg=0,ft=0,st=OK:2
      6165 TSF:MSG:READ,0-0-22,s=255,c=3,t=27,pt=1,l=1,sg=0:1
      6170 MCO:PIM:NODE REG=1
      6173 MCO:BGN:STP
      6175 MCO:SLP:MS=1000,SMS=0,I1=255,M1=255,I2=255,M2=255
      6180 MCO:SLP:TPD
      6182 MCO:SLP:WUP=-1
      6184 MCO:BGN:INIT OK,ID=22,PAR=0,DIS=1,REG=1
      Failed reading temperature from DHT!
      Failed reading humidity from DHT
      Battery percent: 117 %
      7207 MCO:SLP:MS=60000,SMS=0,I1=255,M1=255,I2=255,M2=255
      7214 MCO:SLP:TPD
      7216 MCO:SLP:WUP=-1
      Failed reading temperature from DHT!
      Failed reading humidity from DHT

      Here are the sketch:

      // Enable debug prints to serial monitor
      #define MY_DEBUG 
      
      // Enable and select radio type attached
      #define MY_RADIO_NRF24
      //#define MY_RADIO_RFM69
      #define MY_NODE_ID 22
      
      #include <SPI.h>
      #include <MySensors.h>  
      #include <DHT.h>
      #include <Wire.h>
      //#include <Adafruit_BMP085.h>
      
      #define DHT_DATA_PIN 3
      #define CHILD_ID_HUM 0
      #define CHILD_ID_TEMP 1
      
      // Set this offset if the sensor has a permanent small offset to the real temperatures
      #define SENSOR_TEMP_OFFSET 0
      
      
      #define         READ_SAMPLE_INTERVAL         (10)    //define how many samples you are going to take in normal operation
      #define         READ_SAMPLE_TIMES            (5)     //define the time interal(in milisecond) between each samples in  
      #define         VREF 3.3f
      
      // 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;
      
      // Sleep time between sensor updates (in milliseconds)
      // Must be >1000ms for DHT22 and >2000ms for DHT11
      static const uint64_t UPDATE_INTERVAL = 60000;// Sleep time between sensor updates (in milliseconds)
      
      
      
      unsigned long SLEEP_TIME = 60000; // Sleep time between reads (in milliseconds)
      unsigned long preSleepTime = 5*6000; //  sleep time for extra pre hum-reading for simple avaraging filter
      
      #define SKETCH_NAME "Temp_Humid_Bat"                // Change to a fancy name you like
      #define SKETCH_VERSION "2.0"                    // Your version
      
      float lastTemp;
      float lastHum;
      uint8_t nNoUpdatesTemp;
      uint8_t nNoUpdatesHum;
      bool metric = true;
      
      MyMessage msgHum(CHILD_ID_HUM, V_HUM);
      MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);
      DHT dht;
      
      
      //=========================
      // BATTERY VOLTAGE DIVIDER SETUP
      // 1M, 470K divider across battery and using internal ADC ref of 1.1V
      // Sense point is bypassed with 0.1 uF cap to reduce noise at that point
      // ((1e6+470e3)/470e3)*1.1 = Vmax = 3.44 Volts
      // 3.44/1023 = Volts per bit = 0.003363075
      #define VBAT_PER_BITS 0.003363075  
      #define VMIN 1.9                                  //  Vmin (radio Min Volt)=1.9V (564v)
      #define VMAX 3.0                                  //  Vmax = (2xAA bat)=3.0V (892v)
      int batteryPcnt = 0;                              // Calc value for battery %
      int batLoop = 0;                                  // Loop to help calc average
      int batArray[3];                                  // Array to store value for average calc.
      int BATTERY_SENSE_PIN = A0;                       // select the input pin for the battery sense point
      //=========================
      
      void presentation()  {
        // Send the sketch version information to the gateway and Controller
        sendSketchInfo(SKETCH_NAME, SKETCH_VERSION);
      
        // Register all sensors to gateway (they will be created as child devices)
        present(CHILD_ID_HUM, S_HUM);
        present(CHILD_ID_TEMP, S_TEMP);
        
        metric = getConfig().isMetric;
      }
      
      
      
      void setup()  {
      analogReference(INTERNAL);             // For battery sensing
      
      dht.setup(DHT_DATA_PIN); // set data pin of DHT sensor
        if (UPDATE_INTERVAL <= dht.getMinimumSamplingPeriod()) {
          Serial.println("Warning: UPDATE_INTERVAL is smaller than supported by the sensor!");
        }
        // 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)
        sleep(dht.getMinimumSamplingPeriod());
      }
      
      void loop()
      {
        dht.readSensor(true);
      
        // Get temperature from DHT library
        float temperature = dht.getTemperature();
        if (isnan(temperature)) {
          Serial.println("Failed reading temperature from DHT!");
        } 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;
          if (!metric) {
            temperature = dht.toFahrenheit(temperature);
          }
          // Reset no updates counter
          nNoUpdatesTemp = 0;
          temperature += SENSOR_TEMP_OFFSET;
          send(msgTemp.set(temperature, 1));
      
          #ifdef MY_DEBUG
          Serial.print("Temp: ");
          Serial.println(temperature);
          #endif
        } else {
          // Increase no update counter if the temperature stayed the same
          nNoUpdatesTemp++;
        }
      
        // Get humidity from DHT library
        float humidity = dht.getHumidity();
        if (isnan(humidity)) {
          Serial.println("Failed reading humidity from DHT");
        } 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("Humid: ");
          Serial.println(humidity);
          #endif
        } else {
          // Increase no update counter if the humidity stayed the same
          nNoUpdatesHum++;
        } 
      
      
      
      
        //Read batteries
        batM();
        //Sleep!
        sleep(SLEEP_TIME);
      
        
      
      }
      
      
      void batM() //The battery calculations
      {
         delay(500);
         // Battery monitoring reading
         int sensorValue = analogRead(BATTERY_SENSE_PIN);    
         delay(500);
         
         // Calculate the battery in %
         float Vbat  = sensorValue * VBAT_PER_BITS;
         int batteryPcnt = static_cast<int>(((Vbat-VMIN)/(VMAX-VMIN))*100.);
         Serial.print("Battery percent: "); Serial.print(batteryPcnt); Serial.println(" %");  
         
         // Add it to array so we get an average of 3 (3x20min)
         batArray[batLoop] = batteryPcnt;
        
         if (batLoop > 2) {  
           batteryPcnt = (batArray[0] + batArray[1] + batArray[2] + batArray[3]);
           batteryPcnt = batteryPcnt / 3;
       
         if (batteryPcnt > 100) {
           batteryPcnt=100;
       }
       
           Serial.print("Battery Average (Send): "); Serial.print(batteryPcnt); Serial.println(" %");
             sendBatteryLevel(batteryPcnt);
             batLoop = 0;
            }
           else 
           {
           batLoop++;
           }
      }
      
      posted in Troubleshooting
      pettib
      pettib
    • RE: šŸ’¬ Easy/Newbie PCB for MySensors

      Thanks. I will try this.

      //PT

      posted in OpenHardware.io
      pettib
      pettib
    • RE: šŸ’¬ Easy/Newbie PCB for MySensors

      Hi
      Do anyone have a working sketch for a 2xAA battery powered DHT22 with Mysensors 2.0 that works with this pcb rev.8 ?

      //PT

      posted in OpenHardware.io
      pettib
      pettib
    • RE: Get something thatĀ“s working

      @pettib It“s working now.
      I got wrong version of Mysensors API
      Now i use 2.01
      The time will tell if it get stable.

      posted in General Discussion
      pettib
      pettib
    • RE: Get something thatĀ“s working

      I found the problem with ip address.
      But the serial monitor keeps repeating this message:

      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 192.168.1.254
      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 192.168.1.254
      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 192.168.1.254

      posted in General Discussion
      pettib
      pettib
    • RE: Get something thatĀ“s working

      I have now built a new gateway with W5100, Arduino Nano,.
      I got following error, At the first it seams to be ok, but the ip address is showing wrong. I have put in 192.168.1.154 in the sketch:

      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 0.255.0.0
      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 0.255.0.0
      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;TSM:RADIO:OK
      0;255;3;0;9;TSM:GW MODE
      0;255;3;0;9;TSM:READY
      IP: 0.0.0.0
      0;255;3;0;9;Starting gateway (RNNGA-, 2.0.0)
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;!TSM:RADIO:FAIL
      0;255;3;0;9;!TSM:FAILURE
      0;255;3;0;9;TSM:PDT
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;!TSM:RADIO:FAIL
      0;255;3;0;9;!TSM:FAILURE
      0;255;3;0;9;TSM:PDT
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;!TSM:RADIO:FAIL
      0;255;3;0;9;!TSM:FAILURE
      0;255;3;0;9;TSM:PDT
      0;255;3;0;9;TSM:INIT
      0;255;3;0;9;!TSM:RADIO:FAIL
      0;255;3;0;9;!TSM:FAILURE
      0;255;3;0;9;TSM:PDT

      posted in General Discussion
      pettib
      pettib
    • RE: Get something thatĀ“s working

      I will also try the software versions that was recommended.

      posted in General Discussion
      pettib
      pettib
    • RE: Get something thatĀ“s working

      Some good tip that you guys have give me.
      Most of them i already tried before. I have worked a lot with electronics so I know how to connect the parts i give them the correct power.
      The sensors is working and i can see the transmissions from the nodes to the gateway thru serial monitor. The problem is that both Vera and Domotics are losing connection with gateway. Tried both Serial and Ethernet.
      I read somewhere that Vera dosen“t work so well with serial gateway so they recommend Ethernet. The last hope is that the W5100 will solve my problem.

      Thanks guys.

      posted in General Discussion
      pettib
      pettib
    • RE: Get something thatĀ“s working

      Thanks for your reply.
      I have tried with several hardware's.
      The only thing i haven“t tried is W5100 because i only have some ENC28J60 modules.
      The problem with API 2.0 is that not all of the projects that i have build are rebuild for 2.0. Example the Irrigation Controller that is found here in the forum from "hek".
      I will give it a try as you describe and hope it will work.
      PS. I have ordered a W5100 to try with but i will take some weeks before delivery.

      Thanks again.

      posted in General Discussion
      pettib
      pettib
    • Get something thatĀ“s working

      I have been playing with MySensors for almost a year now but still I haven“t got something that is stable.
      At the moment i have a Vera Edge as Controller but i can“t get any gateway that is working for more than a couple of days. I have been building several versions both for Vera and other controllers bit never got something that works well.
      I will soon give up on this but will give it a last try.

      I have been starting from the beginning several times with different versions of the API and different versions of Arduino IDE but the is always some problem.

      Can please somebody tell me wish versions i need that is working today of
      Arduino IDE
      MySensors API
      Other Librarys

      I have been trying to get a Ethernet Gateway to work for a long time but i still only work for 1h to 2 days.
      I“m using following materials:
      Arduino Nano (China version)
      ENC28J60 Ethernet module
      NRF24L01+ and NRF24L01+PA+LNA
      4,7 uF to the NF module.
      External power supply +5V 2A
      Step down from +5v to 3,3v different versions.( Last is LD33V)

      I have a ESP8266 Node MCU that i can use as well but that one not working ether.

      I have several of each part so there is no problem with the parts from the beginning.

      Other parts that i have built is:
      Temp sensors (Both battery and cable)
      Irrigation Controller
      Repeaters
      Motions sensors
      Moister sensors

      So please help me so I can be a part of this nice system.

      Kind regards

      posted in General Discussion
      pettib
      pettib
    • RE: Solar Powered Soil Moisture Sensor

      @flopp I think it“s was some bad connections. The new one is working very good.

      posted in My Project
      pettib
      pettib
    • Vera UI7 REST API Switchking

      Do anyone know if it would be possible to send REST commands from lua(Luup) to handle a switchking installation.
      They have an API so it“s possible to handle the units from external software.
      Link to REST commands: http://www.switchking.se/en/component/content/article/275-rest-anrop

      It would be nice if it was possible to handle some switchking units from virtual switches in Vera.

      posted in Vera
      pettib
      pettib
    • RE: Solar Powered Soil Moisture Sensor

      @flopp I found this link. https://ez.analog.com/community/university-program/blog/2014/11/14/hacking-an-led-solar-garden-light
      The strange thing is that i can“t get the power on the led pin to go low. But i will remove the IC anyway. I made one light 2 days ago but the battery was empty just the day after and i was not able to get it fully charged again. Maybe some bad connection. I will try a new one today.

      posted in My Project
      pettib
      pettib
    • RE: Solar Powered Soil Moisture Sensor

      @flopp Is it the led or the solar cell that is working as light sensor ? If i remove the led and measure on the pins there is always power, even if it“s in daylight. So it should be possible to get the power to the step-up Vin from the LED pin, This way we can keep the on/off switch and the (YX8018) Mine is marked HW012.

      posted in My Project
      pettib
      pettib
    • RE: Solar Powered Soil Moisture Sensor

      @flopp Maybe i miss something but I think the connector should be mounted between the battery and the Vin on the step-up. You mounted it on the A0, it“s just the voltage check port.

      In the original lamp there was what i think is a charge regulator between the solar cell and the batteri, did you keep that one or you just put the solar cell to the battery ?

      Thanks for a nice idƩ to use this lamp.

      posted in My Project
      pettib
      pettib
    • RE: Init fail

      Yes, The wires is correct and i have the 4.7uF capacitor connected.
      I have homemade card with everything on it.
      It the same i used before.
      The only thing that have been changed is the version of Arduino IDE and Mysensors 1.5.

      posted in Troubleshooting
      pettib
      pettib
    • Init fail

      Hi
      I have been playing with mysensors for a while but now when trying to start it up again after a couple of month of paus.
      I“m getting this error: 0;0;3;0;9;radio init fail when I“m using the following.
      Arduino Nano
      NRF24L01+
      Arduino 1.6.8
      Mysensors 1.5
      SerialGateway sketch

      I have tried to using another NRF chip but same result.
      I have been using the same hardware before to build a gateway

      posted in Troubleshooting
      pettib
      pettib