MySensors is an integration platform for connecting sensor networks to your home automation hub. The original use was for RF24L01 mesh networks connected through a gateway node to some sort of home automation controller (openHAB, Vera, etc.) through a standard serial API using standard sensor and data types. I've found it handy for standardising messaging to/from my microcontrollers, so I've started porting it to Espruino.
Since I use wifi for all my Espruino sensors (rather than something non-ethernet), I've combined the gateway into the individual nodes so that each will talk directly to the controller. There's some basics in the readme and an example for TCP, as well as another module for all the enumerations (saving space in the main module, in case they aren't needed).
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I've thrown together a module for talking the MySensors serial protocol: https://github.com/the1laz/Espruino-MySensors
MySensors is an integration platform for connecting sensor networks to your home automation hub. The original use was for RF24L01 mesh networks connected through a gateway node to some sort of home automation controller (openHAB, Vera, etc.) through a standard serial API using standard sensor and data types. I've found it handy for standardising messaging to/from my microcontrollers, so I've started porting it to Espruino.
Since I use wifi for all my Espruino sensors (rather than something non-ethernet), I've combined the gateway into the individual nodes so that each will talk directly to the controller. There's some basics in the readme and an example for TCP, as well as another module for all the enumerations (saving space in the main module, in case they aren't needed).