rxmode();
setInterval(function() {
if (hasPacket()) console.log(JSON.stringify(E.toString(getPacket())));
},10);
If anyone has some RFM69s they want to try out (@DrAzzy? :) ) I'd be interested to see how this works :) Currently this uses 433Mhz, but it can be changed pretty easily in the connect function.
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.
Hi,
I just hacked up a very basic RFM69 driver. Not in a module yet because I'm sure it needs a lot of refinement, but:
Transmit:
Receive:
If anyone has some RFM69s they want to try out (@DrAzzy? :) ) I'd be interested to see how this works :) Currently this uses 433Mhz, but it can be changed pretty easily in the
connect
function.