Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Development
  3. Please I need some help

Please I need some help

Scheduled Pinned Locked Moved Development
15 Posts 5 Posters 166 Views 4 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • mfalkviddM mfalkvidd

    @Emmanuel-Abraham https://www.mysensors.org/apidocs/Node2Node_8ino_source.html shows how to send from one node to another node.

    https://forum.mysensors.org/topic/8716/direct-pairing-of-two-nodes-implementation/ might be useful as well.

    Emmanuel AbrahamE Offline
    Emmanuel AbrahamE Offline
    Emmanuel Abraham
    wrote on last edited by
    #6

    @mfalkvidd

    thanks sir for the feedback, below is the code for water meter pulse sensor sender but i can't see the receiver code and i don't know where i can get it sir.

    /*
     * 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-2018 Sensnology AB
     * Full contributor list: https://github.com/mysensors/MySensors/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 - GizMoCuz
     *
     * DESCRIPTION
     * Use this sensor to measure volume and flow of your house water meter.
     * You need to set the correct pulsefactor of your meter (pulses per m3).
     * The sensor starts by fetching current volume reading from gateway (VAR 1).
     * Reports both volume and flow back to gateway.
     *
     * Unfortunately millis() won't increment when the Arduino is in
     * sleepmode. So we cannot make this sensor sleep if we also want
     * to calculate/report flow.
     * http://www.mysensors.org/build/pulse_water
     */
    
    // Enable debug prints to serial monitor
    #define MY_DEBUG
    
    // Enable and select radio type attached
    #define MY_RADIO_RF24
    //#define MY_RADIO_NRF5_ESB
    //#define MY_RADIO_RFM69
    //#define MY_RADIO_RFM95
    
    #include <MySensors.h>
    
    #define DIGITAL_INPUT_SENSOR 3                  // The digital input you attached your sensor.  (Only 2 and 3 generates interrupt!)
    
    #define PULSE_FACTOR 1000                       // Number of blinks per m3 of your meter (One rotation/liter)
    
    #define SLEEP_MODE false                        // flowvalue can only be reported when sleep mode is false.
    
    #define MAX_FLOW 40                             // Max flow (l/min) value to report. This filters outliers.
    
    #define CHILD_ID 1                              // Id of the sensor child
    
    uint32_t SEND_FREQUENCY =
        30000;           // Minimum time between send (in milliseconds). We don't want to spam the gateway.
    
    MyMessage flowMsg(CHILD_ID,V_FLOW);
    MyMessage volumeMsg(CHILD_ID,V_VOLUME);
    MyMessage lastCounterMsg(CHILD_ID,V_VAR1);
    
    double ppl = ((double)PULSE_FACTOR)/1000;        // Pulses per liter
    
    volatile uint32_t pulseCount = 0;
    volatile uint32_t lastBlink = 0;
    volatile double flow = 0;
    bool pcReceived = false;
    uint32_t oldPulseCount = 0;
    uint32_t newBlink = 0;
    double oldflow = 0;
    double volume =0;
    double oldvolume =0;
    uint32_t lastSend =0;
    uint32_t lastPulse =0;
    
    void setup()
    {
    	// initialize our digital pins internal pullup resistor so one pulse switches from high to low (less distortion)
    	pinMode(DIGITAL_INPUT_SENSOR, INPUT_PULLUP);
    
    	pulseCount = oldPulseCount = 0;
    
    	// Fetch last known pulse count value from gw
    	request(CHILD_ID, V_VAR1);
    
    	lastSend = lastPulse = millis();
    
    	attachInterrupt(digitalPinToInterrupt(DIGITAL_INPUT_SENSOR), onPulse, FALLING);
    }
    
    void presentation()
    {
    	// Send the sketch version information to the gateway and Controller
    	sendSketchInfo("Water Meter", "1.1");
    
    	// Register this device as Water flow sensor
    	present(CHILD_ID, S_WATER);
    }
    
    void loop()
    {
    	uint32_t currentTime = millis();
    
    	// Only send values at a maximum frequency or woken up from sleep
    	if (SLEEP_MODE || (currentTime - lastSend > SEND_FREQUENCY)) {
    		lastSend=currentTime;
    
    		if (!pcReceived) {
    			//Last Pulsecount not yet received from controller, request it again
    			request(CHILD_ID, V_VAR1);
    			return;
    		}
    
    		if (!SLEEP_MODE && flow != oldflow) {
    			oldflow = flow;
    
    			Serial.print("l/min:");
    			Serial.println(flow);
    
    			// Check that we don't get unreasonable large flow value.
    			// could happen when long wraps or false interrupt triggered
    			if (flow<((uint32_t)MAX_FLOW)) {
    				send(flowMsg.set(flow, 2));                   // Send flow value to gw
    			}
    		}
    
    		// No Pulse count received in 2min
    		if(currentTime - lastPulse > 120000) {
    			flow = 0;
    		}
    
    		// Pulse count has changed
    		if ((pulseCount != oldPulseCount)||(!SLEEP_MODE)) {
    			oldPulseCount = pulseCount;
    
    			Serial.print("pulsecount:");
    			Serial.println(pulseCount);
    
    			send(lastCounterMsg.set(pulseCount));                  // Send  pulsecount value to gw in VAR1
    
    			double volume = ((double)pulseCount/((double)PULSE_FACTOR));
    			if ((volume != oldvolume)||(!SLEEP_MODE)) {
    				oldvolume = volume;
    
    				Serial.print("volume:");
    				Serial.println(volume, 3);
    
    				send(volumeMsg.set(volume, 3));               // Send volume value to gw
    			}
    		}
    	}
    	if (SLEEP_MODE) {
    		sleep(SEND_FREQUENCY);
    	}
    }
    
    void receive(const MyMessage &message)
    {
    	if (message.type==V_VAR1) {
    		uint32_t gwPulseCount=message.getULong();
    		pulseCount += gwPulseCount;
    		flow=oldflow=0;
    		Serial.print("Received last pulse count from gw:");
    		Serial.println(pulseCount);
    		pcReceived = true;
    	}
    }
    
    void onPulse()
    {
    	if (!SLEEP_MODE) {
    		uint32_t newBlink = micros();
    		uint32_t interval = newBlink-lastBlink;
    
    		if (interval!=0) {
    			lastPulse = millis();
    			if (interval<500000L) {
    				// Sometimes we get interrupt on RISING,  500000 = 0.5 second debounce ( max 120 l/min)
    				return;
    			}
    			flow = (60000000.0 /interval) / ppl;
    		}
    		lastBlink = newBlink;
    	}
    	pulseCount++;
    }
    
    1 Reply Last reply
    0
    • Emmanuel AbrahamE Emmanuel Abraham

      @hlehoux
      how should be the target code for the sender code below?

      this is the sender pulse water sensor code. i can't see the receiver code.

      /*
       * 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-2018 Sensnology AB
       * Full contributor list: https://github.com/mysensors/MySensors/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 - GizMoCuz
       *
       * DESCRIPTION
       * Use this sensor to measure volume and flow of your house water meter.
       * You need to set the correct pulsefactor of your meter (pulses per m3).
       * The sensor starts by fetching current volume reading from gateway (VAR 1).
       * Reports both volume and flow back to gateway.
       *
       * Unfortunately millis() won't increment when the Arduino is in
       * sleepmode. So we cannot make this sensor sleep if we also want
       * to calculate/report flow.
       * http://www.mysensors.org/build/pulse_water
       */
      
      // Enable debug prints to serial monitor
      #define MY_DEBUG
      
      // Enable and select radio type attached
      #define MY_RADIO_RF24
      //#define MY_RADIO_NRF5_ESB
      //#define MY_RADIO_RFM69
      //#define MY_RADIO_RFM95
      
      #include <MySensors.h>
      
      #define DIGITAL_INPUT_SENSOR 3                  // The digital input you attached your sensor.  (Only 2 and 3 generates interrupt!)
      
      #define PULSE_FACTOR 1000                       // Number of blinks per m3 of your meter (One rotation/liter)
      
      #define SLEEP_MODE false                        // flowvalue can only be reported when sleep mode is false.
      
      #define MAX_FLOW 40                             // Max flow (l/min) value to report. This filters outliers.
      
      #define CHILD_ID 1                              // Id of the sensor child
      
      uint32_t SEND_FREQUENCY =
          30000;           // Minimum time between send (in milliseconds). We don't want to spam the gateway.
      
      MyMessage flowMsg(CHILD_ID,V_FLOW);
      MyMessage volumeMsg(CHILD_ID,V_VOLUME);
      MyMessage lastCounterMsg(CHILD_ID,V_VAR1);
      
      double ppl = ((double)PULSE_FACTOR)/1000;        // Pulses per liter
      
      volatile uint32_t pulseCount = 0;
      volatile uint32_t lastBlink = 0;
      volatile double flow = 0;
      bool pcReceived = false;
      uint32_t oldPulseCount = 0;
      uint32_t newBlink = 0;
      double oldflow = 0;
      double volume =0;
      double oldvolume =0;
      uint32_t lastSend =0;
      uint32_t lastPulse =0;
      
      void setup()
      {
      	// initialize our digital pins internal pullup resistor so one pulse switches from high to low (less distortion)
      	pinMode(DIGITAL_INPUT_SENSOR, INPUT_PULLUP);
      
      	pulseCount = oldPulseCount = 0;
      
      	// Fetch last known pulse count value from gw
      	request(CHILD_ID, V_VAR1);
      
      	lastSend = lastPulse = millis();
      
      	attachInterrupt(digitalPinToInterrupt(DIGITAL_INPUT_SENSOR), onPulse, FALLING);
      }
      
      void presentation()
      {
      	// Send the sketch version information to the gateway and Controller
      	sendSketchInfo("Water Meter", "1.1");
      
      	// Register this device as Water flow sensor
      	present(CHILD_ID, S_WATER);
      }
      
      void loop()
      {
      	uint32_t currentTime = millis();
      
      	// Only send values at a maximum frequency or woken up from sleep
      	if (SLEEP_MODE || (currentTime - lastSend > SEND_FREQUENCY)) {
      		lastSend=currentTime;
      
      		if (!pcReceived) {
      			//Last Pulsecount not yet received from controller, request it again
      			request(CHILD_ID, V_VAR1);
      			return;
      		}
      
      		if (!SLEEP_MODE && flow != oldflow) {
      			oldflow = flow;
      
      			Serial.print("l/min:");
      			Serial.println(flow);
      
      			// Check that we don't get unreasonable large flow value.
      			// could happen when long wraps or false interrupt triggered
      			if (flow<((uint32_t)MAX_FLOW)) {
      				send(flowMsg.set(flow, 2));                   // Send flow value to gw
      			}
      		}
      
      		// No Pulse count received in 2min
      		if(currentTime - lastPulse > 120000) {
      			flow = 0;
      		}
      
      		// Pulse count has changed
      		if ((pulseCount != oldPulseCount)||(!SLEEP_MODE)) {
      			oldPulseCount = pulseCount;
      
      			Serial.print("pulsecount:");
      			Serial.println(pulseCount);
      
      			send(lastCounterMsg.set(pulseCount));                  // Send  pulsecount value to gw in VAR1
      
      			double volume = ((double)pulseCount/((double)PULSE_FACTOR));
      			if ((volume != oldvolume)||(!SLEEP_MODE)) {
      				oldvolume = volume;
      
      				Serial.print("volume:");
      				Serial.println(volume, 3);
      
      				send(volumeMsg.set(volume, 3));               // Send volume value to gw
      			}
      		}
      	}
      	if (SLEEP_MODE) {
      		sleep(SEND_FREQUENCY);
      	}
      }
      
      void receive(const MyMessage &message)
      {
      	if (message.type==V_VAR1) {
      		uint32_t gwPulseCount=message.getULong();
      		pulseCount += gwPulseCount;
      		flow=oldflow=0;
      		Serial.print("Received last pulse count from gw:");
      		Serial.println(pulseCount);
      		pcReceived = true;
      	}
      }
      
      void onPulse()
      {
      	if (!SLEEP_MODE) {
      		uint32_t newBlink = micros();
      		uint32_t interval = newBlink-lastBlink;
      
      		if (interval!=0) {
      			lastPulse = millis();
      			if (interval<500000L) {
      				// Sometimes we get interrupt on RISING,  500000 = 0.5 second debounce ( max 120 l/min)
      				return;
      			}
      			flow = (60000000.0 /interval) / ppl;
      		}
      		lastBlink = newBlink;
      	}
      	pulseCount++;
      }
      
      H Offline
      H Offline
      hlehoux
      wrote on last edited by
      #7

      Hello @Emmanuel-Abraham , i've never used this pulse meter sensor.

      as far as i can see, it's sending 3 different values to the gateaway:

      flow value : send(flowMsg.set(flow, 2));
      pulse count : send(lastCounterMsg.set(pulseCount));
      volume : send(volumeMsg.set(volume, 3));

      so if you want to send say the flow value to another node, let's say node 34
      you should
      flowMsg.setDestination(34);

      and you have to add the
      void receive(const MyMessage &message)
      {
      }
      function in the code of your node n°34

      Emmanuel AbrahamE 1 Reply Last reply
      1
      • H hlehoux

        Hello @Emmanuel-Abraham , i've never used this pulse meter sensor.

        as far as i can see, it's sending 3 different values to the gateaway:

        flow value : send(flowMsg.set(flow, 2));
        pulse count : send(lastCounterMsg.set(pulseCount));
        volume : send(volumeMsg.set(volume, 3));

        so if you want to send say the flow value to another node, let's say node 34
        you should
        flowMsg.setDestination(34);

        and you have to add the
        void receive(const MyMessage &message)
        {
        }
        function in the code of your node n°34

        Emmanuel AbrahamE Offline
        Emmanuel AbrahamE Offline
        Emmanuel Abraham
        wrote on last edited by
        #8

        @hlehoux

        Thanks sir for the reply, sorry can you help me to write water meter pulse sensor receiver code for the transmitter code above?

        H 1 Reply Last reply
        0
        • Emmanuel AbrahamE Emmanuel Abraham

          @hlehoux

          Thanks sir for the reply, sorry can you help me to write water meter pulse sensor receiver code for the transmitter code above?

          H Offline
          H Offline
          hlehoux
          wrote on last edited by
          #9

          @Emmanuel-Abraham sorry but i’m not sure i understand what you want to achieve.
          i think you already have a working water pulse sensor but can you explain what you want to do ? why another node ? what do you want this node to do ? what data do you want to send to the node ?

          what is your programming knowledge ?

          Emmanuel AbrahamE 1 Reply Last reply
          1
          • H hlehoux

            @Emmanuel-Abraham sorry but i’m not sure i understand what you want to achieve.
            i think you already have a working water pulse sensor but can you explain what you want to do ? why another node ? what do you want this node to do ? what data do you want to send to the node ?

            what is your programming knowledge ?

            Emmanuel AbrahamE Offline
            Emmanuel AbrahamE Offline
            Emmanuel Abraham
            wrote on last edited by
            #10

            @hlehoux ok for now i need one transmitter and one receiver, on transmitter side will be attached to water meter that will be attached with water pulse sensor to monitor water flow rate, water consumption in Liters or in cubic meters and battery level status and this three data should be sent to a receiver that will include display to display that data from the transmitter sir, the transmitter should operates at least 1 year without replacing the battery. that's what i wanted sir.

            1 Reply Last reply
            0
            • H Offline
              H Offline
              hlehoux
              wrote on last edited by
              #11

              OK, for the receiver you could use this example: https://www.mysensors.org/build/display

              you will have to adapt the example code which is displaying the current time.

              and add the receive function
              void receive(const MyMessage &message)
              {
              }

              and inside the receive function extract the the values you want and display it through lcd.print()

              hope this helps

              Emmanuel AbrahamE 1 Reply Last reply
              0
              • H Offline
                H Offline
                hlehoux
                wrote on last edited by
                #12

                you will for sure also find many other "display" node example in the forum.

                1 Reply Last reply
                0
                • H hlehoux

                  OK, for the receiver you could use this example: https://www.mysensors.org/build/display

                  you will have to adapt the example code which is displaying the current time.

                  and add the receive function
                  void receive(const MyMessage &message)
                  {
                  }

                  and inside the receive function extract the the values you want and display it through lcd.print()

                  hope this helps

                  Emmanuel AbrahamE Offline
                  Emmanuel AbrahamE Offline
                  Emmanuel Abraham
                  wrote on last edited by
                  #13

                  @hlehoux sorry sir can you help me to modify my two codes above one for transmitter and another for receiver by using your example above? I I told you I have not enough knowledge about mysensors library sir please help me.

                  1 Reply Last reply
                  0
                  • G Offline
                    G Offline
                    gulshan212
                    wrote on last edited by
                    #14

                    @Emmanuel-Abraham said in Please I need some help:

                    how do I modify the code of water meter pulse to transfer water meter readings from one node to another node by using nrf24l01

                    Hello this is Gulshan Negi
                    I am a newbie here.
                    To modify the code of a water meter pulse to transmit readings from one node to another using the nRF24L01, you will need to do the following:

                    a. Install the necessary libraries for the nRF24L01 module. You will need to download the Arduino libraries for the nRF24L01 and install them on your computer.
                    b. Connect the nRF24L01 module to your microcontroller. The nRF24L01 module has six pins that need to be connected to your microcontroller. These are VCC, GND, MOSI, MISO, SCK, and CE.
                    c. Initialize the nRF24L01 module in your code. You will need to include the libraries for the nRF24L01 module in your sketch and initialize the module by setting up the appropriate communication speeds and addresses.
                    d. Set up the transmitter and receiver nodes. You will need to set up two nodes, one for transmitting and one for receiving. The transmitter node will send the water meter readings to the receiver node via the nRF24L01 module.
                    e. Write the code to transmit and receive the water meter readings. You will need to write code to transfer the water meter readings from the transmitter node to the receiver node using the nRF24L01 module. You will also need to write code to receive the water meter readings at the receiver node and process them as required.

                    I hope this helps!
                    Thanks

                    Emmanuel AbrahamE 1 Reply Last reply
                    0
                    • G gulshan212

                      @Emmanuel-Abraham said in Please I need some help:

                      how do I modify the code of water meter pulse to transfer water meter readings from one node to another node by using nrf24l01

                      Hello this is Gulshan Negi
                      I am a newbie here.
                      To modify the code of a water meter pulse to transmit readings from one node to another using the nRF24L01, you will need to do the following:

                      a. Install the necessary libraries for the nRF24L01 module. You will need to download the Arduino libraries for the nRF24L01 and install them on your computer.
                      b. Connect the nRF24L01 module to your microcontroller. The nRF24L01 module has six pins that need to be connected to your microcontroller. These are VCC, GND, MOSI, MISO, SCK, and CE.
                      c. Initialize the nRF24L01 module in your code. You will need to include the libraries for the nRF24L01 module in your sketch and initialize the module by setting up the appropriate communication speeds and addresses.
                      d. Set up the transmitter and receiver nodes. You will need to set up two nodes, one for transmitting and one for receiving. The transmitter node will send the water meter readings to the receiver node via the nRF24L01 module.
                      e. Write the code to transmit and receive the water meter readings. You will need to write code to transfer the water meter readings from the transmitter node to the receiver node using the nRF24L01 module. You will also need to write code to receive the water meter readings at the receiver node and process them as required.

                      I hope this helps!
                      Thanks

                      Emmanuel AbrahamE Offline
                      Emmanuel AbrahamE Offline
                      Emmanuel Abraham
                      wrote on last edited by
                      #15

                      @gulshan212 how can i do this by using mysensors library coz i need also to save battery power.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      11

                      Online

                      11.7k

                      Users

                      11.2k

                      Topics

                      113.1k

                      Posts


                      Copyright 2025 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • MySensors
                      • OpenHardware.io
                      • Categories
                      • Recent
                      • Tags
                      • Popular