Newbie Gateway Hardware Confusion
-
I just compiled the MySensors sketch (with RFM69 and W5100) and the usage was 46904 bytes.
My guess the Ethernet interface takes a lot more CPU horsepower than the serial you have. -
@johnrob I don't see why it wouldn't work on a pro mini though. You shouldn't need a mega2560.
-
@gohan said in Newbie Gateway Hardware Confusion:
You still have the esp8266 option then
Thanks for the suggestion...I'm still learning the Arduino platform. I have two questions regarding the ESP8266,
-
Is there a particular implementation of the ESP8266 that works well as a gateway? (I see lots of ESP8266's)
-
Reading the requirements; the gateway software stores the NODE id's in EEPROM. I don't see any on the ESP8266. I know some µP can use blocks of flash like EEPROM but I don't have a feel if the reduced lifetime of the flash used this way is anything I should be worried about.
Thanks
John -
-
I like the wemos d1 mini or pro as they have a compact size more breadboard friendly and there are a bunch of shields that you can use (if you look in openhardware.io there are some too)
About the flash, I don't know -
@gohan said in Newbie Gateway Hardware Confusion:
You still have the esp8266 option then
Thanks for the suggestion...I'm still learning the Arduino platform. I have two questions regarding the ESP8266,
-
Is there a particular implementation of the ESP8266 that works well as a gateway? (I see lots of ESP8266's)
-
Reading the requirements; the gateway software stores the NODE id's in EEPROM. I don't see any on the ESP8266. I know some µP can use blocks of flash like EEPROM but I don't have a feel if the reduced lifetime of the flash used this way is anything I should be worried about.
Thanks
John@johnrob I recommend wemos d1 mini for the same reasons as gohan.
For the flash/eeprom: mysensors handles this so there is no need to worry. A gateway can have only up to 253 nodes, so the node id will be written to maximum 254 times. That will not wear out the flash.
-
-
-
@johnrob I recommend wemos d1 mini for the same reasons as gohan.
For the flash/eeprom: mysensors handles this so there is no need to worry. A gateway can have only up to 253 nodes, so the node id will be written to maximum 254 times. That will not wear out the flash.
@mfalkvidd
Thank you for the explanation. I've learned a lot in this thread alone.Question on the node id. If I end up with enough sensors to form a mesh and some of them are far enough away from the gateway to need to travel through a repeater. Would a change in "path" change the node ID or some other path related characteristic?