Navigation

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

    BeniK

    @BeniK

    0
    Reputation
    10
    Posts
    406
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    BeniK Follow

    Best posts made by BeniK

    This user hasn't posted anything yet.

    Latest posts made by BeniK

    • RE: UV Sensor ML8511

      @mrc-core Thanks for the code. The code works fine but I am seing the node reporting direct measurements to the gateway every single second, spamming the gateway.

      Is there anything I can do to stop this behavior and transmit averages; in example - every minute or every 5 minutes?

      Thanks in advance!

      posted in My Project
      BeniK
      BeniK
    • RE: Driveway motion light

      @dbemowsk Yes, it makes sense and it works flawlessly !

      Thank You very much!

      posted in My Project
      BeniK
      BeniK
    • RE: Driveway motion light

      @dbemowsk Thnk You very much for your help!

      Yhe sensor breakout board I am using is this one on the pictures. Is there any way to modify it or do I have to build my own LDR Sensor board? I so, what R1 value do you think is best?
      1_1497444915919_20170614_144132.jpg 0_1497444915905_20170614_144109.jpg
      Thanks again!!

      posted in My Project
      BeniK
      BeniK
    • RE: Driveway motion light

      @dbemowsk Hi and thanks for the sketch! I don't know if you still using this setup - I tried it and it works flawlessly. But (there is always a "but"), I am having problems lighting up the relay when light levels drop. My LDR sensor reports light the opposite it needs to be reported; meaning I get 100 when no light at all and 0 light level when I shine a light into the sensor (full light situation).

      Surely I resolved the relay firing up thing by changing

      if (lightLevel < 10 && motion && relay == RELAY_OFF)

      into

      if (lightLevel > 90 && motion && relay == RELAY_OFF)

      and the relay works, but I really love to use the right LDR Level on my Domoticz setup so a little help will be really appreciated.

      Is this something that my LDR sensor is faulty or is this something it could be resolved by modifying the sketch?

      Thanks in advance!

      posted in My Project
      BeniK
      BeniK
    • RE: NodeManager: plugin for a rapid development of battery-powered sensors

      @user2684 By the way I am alsy trying to implement the forecasting algorithm for BME280 sensor (from here) into the BME280 section of NodeManager.cpp and Nodemanager.h but until now no joy. Maybe I am trying to do something complicated for me as a beginner into this, but I always like to learn by trial and error. Any advice you could give me to be able to implement the forecasting algorithm?

      posted in NodeManager
      BeniK
      BeniK
    • RE: NodeManager: plugin for a rapid development of battery-powered sensors

      @user2684 You were right! Definately a memory problem. Disabled the non-needed modules and everything is working as it should!

      REG I=1 P=3 P=6 T=0
      REG I=2 P=4 P=6 T=0
      REG I=3 P=4 P=7 T=1
      NodeManager v1.4
      INT1 M=255
      INT2 M=255
      RADIO OK
      PRES I=200, T=23
      PRES I=201, T=30
      BATT V=3.44 P=100
      SEND D=0 I=201 C=0 T=38 S= I=0 F=3.44
      PRES I=1 T=6
      PRES I=2 T=6
      PRES I=3 T=7
      READY
      
      MY I=199 M=1
      DS18B20 I=1 T=44.19
      SEND D=0 I=1 C=0 T=0 S= N=0 F=44.19
      DHT I=2 T=24.40
      SEND D=0 I=2 C=0 T=0 S= N=0 F=24.40
      DHT I=3 H=35.50
      SEND D=0 I=3 C=0 T=1 S= N=0 F=35.50
      SLEEP 60s
      

      Many many many THANKS for the help!

      posted in NodeManager
      BeniK
      BeniK
    • RE: NodeManager: plugin for a rapid development of battery-powered sensors

      @user2684 Hi and thank you for the prompt response!

      The % of memory used is 83% of program storage space and 63% of dynamic memory.
      
      Sketch uses 25580 bytes (83%) of program storage space. Maximum is 30720 bytes.
      Global variables use 1307 bytes (63%) of dynamic memory, leaving 741 bytes for local variables. Maximum is 2048 bytes.
      

      Heading right now to try to compile without the non-needed modules and try again.

      posted in NodeManager
      BeniK
      BeniK
    • RE: NodeManager: plugin for a rapid development of battery-powered sensors

      Needles to say and re-say this is really a much needed plugin for us beginners!

      Made a bunch of battery operating nodes with only DHT22 and all are working flawlessly.

      Today I tried making a node using a DS18B20 and DHT22. DS18B20 connected to digital pin 3 and DHT22 to digital pin 4. Both sensors have 10K resistors between their vcc and data lines (tried without resistors but none of the sensors worked).

      Sketch compiles and uploads fine to a Arduino Pro Mini 328 3.3v 8MHz. It also connects to the gateway, but I run into some problems;

      The first one being that watching from the serial debug, the node strarts up, connects to the gateway, reports some data and then hangs. No more activity from the node watching on the serial debug.

      The second one is that the node never sleeps - Activity led on Arduino Pro Mini remains lit.

      The last one is that DS18B20 reports the Temp to the gateway but DHT22 reports only Temp and not the Humidity. Tried changing pins for the sensors, but the same.

      Connection logs (from the serial interface) are as follows:

      REG I=1 P=3 P=6 T=0
      REG I=2 P=4 P=6 T=0
      REG I=3 P=4 P=7 T=1
      NodeManager v1.4
      INT1 M=255
      INT2 M=255
      RADIO OK
      PRES I=200, T=23
      PRES I=201, T=30
      BATT V=3.44 P=100
      SEND D=0 I=201 C=0 T=38 S= I=0 F=3.44
      PRES I=1 T=6
      PRES I=2 T=6
      PRES I=3 T=7
      READY
      
      MY I=199 M=1
      DS18B20 I=1 T=47.75
      SEND D=0 I=1 C=0 T=0 S= N=0 F=47.75
      DHT I=2 T=25.00
      SEND D=0 I=2 C=0 T=0 S= N=0 F=25.00
      

      And the sketch I use is as follows:

      /*
      NodeManager is intended to take care on your behalf of all those common tasks a MySensors node has to accomplish, speeding up the development cycle of your projects.
      
      NodeManager includes the following main components:
      - Sleep manager: allows managing automatically the complexity behind battery-powered sensors spending most of their time sleeping
      - Power manager: allows powering on your sensors only while the node is awake
      - Battery manager: provides common functionalities to read and report the battery level
      - Remote configuration: allows configuring remotely the node without the need to have physical access to it
      - Built-in personalities: for the most common sensors, provide embedded code so to allow their configuration with a single line 
      
      Documentation available on: https://github.com/mysensors/NodeManager
       */
      
       
      // load user settings
      #include "config.h"
      // load MySensors library
      #include <MySensors.h>
      // load NodeManager library
      #include "NodeManager.h"
      
      // create a NodeManager instance
      NodeManager nodeManager;
      
      // before
      void before() {
        // setup the serial port baud rate
        Serial.begin(MY_BAUD_RATE);  
        /*
         * Register below your sensors
        */
      
          nodeManager.setBatteryMin(2.0);
          nodeManager.setBatteryMax(3.3);
          nodeManager.setSleep(SLEEP,60,SECONDS);
          nodeManager.registerSensor(SENSOR_DS18B20,3);
          nodeManager.registerSensor(SENSOR_DHT22,4);
      
        /*
         * Register above your sensors
        */
        nodeManager.before();
      }
      
      // presentation
      void presentation() {
        // Send the sketch version information to the gateway and Controller
      	sendSketchInfo(SKETCH_NAME,SKETCH_VERSION);
        // call NodeManager presentation routine
        nodeManager.presentation();
      
      }
      
      // setup
      void setup() {
        // call NodeManager setup routine
        nodeManager.setup();
      }
      
      // loop
      void loop() {
        // call NodeManager loop routine
        nodeManager.loop();
      
      }
      
      // receive
      void receive(const MyMessage &message) {
        // call NodeManager receive routine
        nodeManager.receive(message);
      }
      

      Also on config.h I have enabled DS18B20 and DHT22 modules.

      Really, any help would be welcome!

      Thanks all in advance!

      posted in NodeManager
      BeniK
      BeniK
    • RE: Temp sensor BME280 c18 vs j34

      Really an old topic but for those still curious; those codes usually are used for sellers working with agents. I mean, "XXX" seller has 5 agents but only one account (kind-a franchise type) so to track who sold what they use those codes. At least this is what one of ebay sellers told me when out of curiosity I asked one day.

      posted in Hardware
      BeniK
      BeniK
    • RE: NodeManager: plugin for a rapid development of battery-powered sensors

      A long time reader and "lurker" here, but just registered today to thank @user2684 for this contribution to MYS Community! In my opinion NodeManager is really a great addition to MYS!

      posted in NodeManager
      BeniK
      BeniK