💬 The Sensor Network
-
@frydrik I have multiple years of experience with LoRaWAN, but transferring that experience from one person to another in a forum thread is not possible.
-
@frydrik I have multiple years of experience with LoRaWAN, but transferring that experience from one person to another in a forum thread is not possible.
@mfalkvidd Hi, I have a question regarding the numbering of nodes, as I understood, 254 can be connected to a Gateway, if I configure a node of these 254 as a repeater then at this node they will connect in theory another 254, the question is how the handle can define this number of nodes?
#define MY_NODE_ID ------ does it work in the range from 1 -254? -
@mfalkvidd Hi, I have a question regarding the numbering of nodes, as I understood, 254 can be connected to a Gateway, if I configure a node of these 254 as a repeater then at this node they will connect in theory another 254, the question is how the handle can define this number of nodes?
#define MY_NODE_ID ------ does it work in the range from 1 -254? -
@frydrik yes MY_NODE_ID can be between 1 and 254. No, repeaters will not allow you to add more nodes to the same MySensors network.
@mfalkvidd thanks for the answer, but I have another question, why can't the number of nodes be increased to more than 254? Is it a hardware limitation or can these values be changed inside libraries?
-
@mfalkvidd thanks for the answer, but I have another question, why can't the number of nodes be increased to more than 254? Is it a hardware limitation or can these values be changed inside libraries?
@frydrik Don't forget that each node can have up to 255 sensors and you can have multiple networks. So 3 gateways running 3 networks could have 193,548 sensors. Wouldn't that be enough? If not just add another gateway.
If you used every channel on an nrf24l01+ you could have 254x254x128 sensors = 8,258,048!
-
@mfalkvidd thanks for the answer, but I have another question, why can't the number of nodes be increased to more than 254? Is it a hardware limitation or can these values be changed inside libraries?
@frydrik said in 💬 The Sensor Network:
@mfalkvidd thanks for the answer, but I have another question, why can't the number of nodes be increased to more than 254? Is it a hardware limitation or can these values be changed inside libraries?
Because the MySensors library is designed that way, and because sending larger addresses will mean that messages must be shorter that what's currently supported.
But MySensors is open source - anyone with enough skills, time and motivation can change it.
-
@frydrik Don't forget that each node can have up to 255 sensors and you can have multiple networks. So 3 gateways running 3 networks could have 193,548 sensors. Wouldn't that be enough? If not just add another gateway.
If you used every channel on an nrf24l01+ you could have 254x254x128 sensors = 8,258,048!
@skywatch thanks for the answer, I understand that 254 nodes can be connected to a Gateway, and 255 sensors can be connected to each node, the question is how to apply this for reading electric meters where their number is considerably higher than 254, as with a node to read as ex. at least 20 meters?
-
@skywatch thanks for the answer, I understand that 254 nodes can be connected to a Gateway, and 255 sensors can be connected to each node, the question is how to apply this for reading electric meters where their number is considerably higher than 254, as with a node to read as ex. at least 20 meters?
-
@skywatch thanks for the answer, I understand that 254 nodes can be connected to a Gateway, and 255 sensors can be connected to each node, the question is how to apply this for reading electric meters where their number is considerably higher than 254, as with a node to read as ex. at least 20 meters?
@frydrik For a population of 500,000, say 200,000 customers, you are into commercial scale data gathering such as EON etc might deploy, a principal driver for the power companies fitting smart meters.
I would have to guess in a city of the size you mention, smart meters are already in place... -
@frydrik For a population of 500,000, say 200,000 customers, you are into commercial scale data gathering such as EON etc might deploy, a principal driver for the power companies fitting smart meters.
I would have to guess in a city of the size you mention, smart meters are already in place...@zboblamont Absolutely - with hundreds of meters in properties, most of which will have wifi ap's, wifi cameras, bluetooth devices and microwave ovens then it's a really complex situation.
-
@frydrik I think you need to spend more time with mysensors to appreciate it's strengths and weaknesses and from that experience decided if it is suitable for your needs.
@skywatch Hello, I'm fascinated by the mysensors project, take off your hat in front of those who develop it, I'm not a programmer, that's why I can ask a lot of stupid questions, but otherwise you can't gain experience, I'm currently programming an arduino I use graphical programming I use a Russian application: flprog is very good for me, you can program an arduino with superficial programming knowledge. Now I'm trying to learn C ++ so I can clear up the code in arduino.
-
@frydrik said in 💬 The Sensor Network:
@mfalkvidd thanks for the answer, but I have another question, why can't the number of nodes be increased to more than 254? Is it a hardware limitation or can these values be changed inside libraries?
Because the MySensors library is designed that way, and because sending larger addresses will mean that messages must be shorter that what's currently supported.
But MySensors is open source - anyone with enough skills, time and motivation can change it.
@mfalkvidd Hello, can you help me understand, I use the example to read the data on an electric meter, but I have some problems,
when I set PULSE_FACTOR with the one indicated on the meter I receive the wrong result, for me the meter has PULSE_FACTOR 5000 and I receive double V_VAR1 with the number of real pulses, that is if the number as ex. 10 pulses the node transmits in Gateway 20. if I set PULSE_FACTOR = with the one indicated on the counter I get a value double with the real one, in the sketch I set PULSE_FACTOR 2500 and now I get real kwh as on the counter, my question is why does V_VAR1 have such values? -
@skywatch Hello, I'm fascinated by the mysensors project, take off your hat in front of those who develop it, I'm not a programmer, that's why I can ask a lot of stupid questions, but otherwise you can't gain experience, I'm currently programming an arduino I use graphical programming I use a Russian application: flprog is very good for me, you can program an arduino with superficial programming knowledge. Now I'm trying to learn C ++ so I can clear up the code in arduino.
@frydrik You don't really need to be a "C++ programmer" to use mysensors. There are a lot of examples that you can learnn from and modify to your needs.
That said I am impressed that a Russian speaker is getting on with this in such a fast way. :)
I hope I don't upset anyone with this, but I still think of mysensors as an amateur/home project.... A learning adventure if you think of it like that. I don't consider it a commercial ready application for large scale implementation.
That is of course just my experience and opinion based on many years using it. Your opinion may be different to mine, but the only way to know is to learn, try, fail, develop and try again...... ;)
-
@frydrik You don't really need to be a "C++ programmer" to use mysensors. There are a lot of examples that you can learnn from and modify to your needs.
That said I am impressed that a Russian speaker is getting on with this in such a fast way. :)
I hope I don't upset anyone with this, but I still think of mysensors as an amateur/home project.... A learning adventure if you think of it like that. I don't consider it a commercial ready application for large scale implementation.
That is of course just my experience and opinion based on many years using it. Your opinion may be different to mine, but the only way to know is to learn, try, fail, develop and try again...... ;)
@skywatch Hello, I am from the Republic of Moldova, I am a Romanian speaker, I also learned the Russian language, My country is the poorest country in Europe. I am also trying to implement this remote meter reading project as a pilot project, on my own account, I have no funding here, I have to implement it myself without any resources. so I can't say this is a commercial project
-
@skywatch Hello, I am from the Republic of Moldova, I am a Romanian speaker, I also learned the Russian language, My country is the poorest country in Europe. I am also trying to implement this remote meter reading project as a pilot project, on my own account, I have no funding here, I have to implement it myself without any resources. so I can't say this is a commercial project
@frydrik OK, so with no funding the only option is to educate yourself little-by-little.
Build a small test system and keep trying it in new locations to see how it goes. Learning by doing is the best and quickest way I think.
Have you considered that signals might be hacked, spoofed or jammed? How will you mitigate such things?
What you want to do may seem simple at first, but there is a lot to think about with such big ambitions.
There is no easy short cut - try things for yourself and if you have problems then post them here and I am sure many people will try and help you.
-
@frydrik OK, so with no funding the only option is to educate yourself little-by-little.
Build a small test system and keep trying it in new locations to see how it goes. Learning by doing is the best and quickest way I think.
Have you considered that signals might be hacked, spoofed or jammed? How will you mitigate such things?
What you want to do may seem simple at first, but there is a lot to think about with such big ambitions.
There is no easy short cut - try things for yourself and if you have problems then post them here and I am sure many people will try and help you.
-
@frydrik My approach would be to make one gateway and one node only. It will simplify testing and speed it up a lot!
Decide which bootloader you will use and why (the below list will impact that decision).
Learn how to burn a bootloader and when successful move on to....
Get the code working.
Then add soft or hard signing to messages if you think you need to.
Then add encryption to messages if you think you need to.
Then add wireless firmware updates (FOTA) if you think you need to.Then, when you have it all as you want it is easy to duplicate it very quickly to lots of nodes. And test again.
Also I suggest manually assigning node ID's as when power goes off they will all come back with the same ID, not randomly assigned ones.
Always save a modified sketch with a new name or verison so if things don't go well you can go back to the last working version.
It is very likely that you will hit many obsticals along the way. You need to remain focused and determined to do what you want. Be warned that it's going to take some time.
-
@frydrik My approach would be to make one gateway and one node only. It will simplify testing and speed it up a lot!
Decide which bootloader you will use and why (the below list will impact that decision).
Learn how to burn a bootloader and when successful move on to....
Get the code working.
Then add soft or hard signing to messages if you think you need to.
Then add encryption to messages if you think you need to.
Then add wireless firmware updates (FOTA) if you think you need to.Then, when you have it all as you want it is easy to duplicate it very quickly to lots of nodes. And test again.
Also I suggest manually assigning node ID's as when power goes off they will all come back with the same ID, not randomly assigned ones.
Always save a modified sketch with a new name or verison so if things don't go well you can go back to the last working version.
It is very likely that you will hit many obsticals along the way. You need to remain focused and determined to do what you want. Be warned that it's going to take some time.
@skywatch
Hi, now I do, I have 1 gate and 3 nodes, I have already connected 1 node to a test meter, now I choose the same data that is displayed on the meter screen and MYCONTROLLER, node ID I install it manually, now I want to test at what maximum distance can the connection between the gate and the node be made, the gate is made on TTGO LoRa32 SX1276 OLED and the test node also TTGO LoRa32 SX1276 OLED, the other 2 nodes are nodemcu esp8266 + RFM95, they have standard antennas that do not inspire me much confidence , I want to try to build other antennas to see the difference between the standard antenna and the one I made, then I want to solve the problem with bootloader for FOTA, I think to create the nodes from nodemcu esp8266 + RFM95 because I want to connect to a node several counters from 2-6-8, because arduino Pro Mini / Nano no more than 2 interrupts esp8266 all gpio can be as interrupt, here I think how to do bootloader for FOTA.!!
my test stand:

-
Hi friends, in the above "The Radio Communication" topic I see these lines "You can also send messages directly between two nodes in the network without transiting through the gateway. For example, your outside temperature sensor can send its data directly to another sensor in your kitchen with an attached display."
This is what I am struggling to achieve , please help me with an Example Sketch for both sender and receiver for the above setup and it will be a great start for me to explore the excellent features of MySensors IoT. -
Hi friends, in the above "The Radio Communication" topic I see these lines "You can also send messages directly between two nodes in the network without transiting through the gateway. For example, your outside temperature sensor can send its data directly to another sensor in your kitchen with an attached display."
This is what I am struggling to achieve , please help me with an Example Sketch for both sender and receiver for the above setup and it will be a great start for me to explore the excellent features of MySensors IoT.@RagoTube examples are there in,
- https://github.com/mysensors/MySensors/tree/development/examples
- https://github.com/mysensors/MySensorsArduinoExamples
The following sketch can help you to get your setup,
https://github.com/mysensors/MySensors/blob/development/examples/Node2Node/Node2Node.ino