-
Hello,
at first, thank for your work.
It is possible to create a function to send an message to broadcast like this:
``` python
def sendOverBroadcast(self, buff, loopcount):
self.writeReg(…
Newan updated
8 years ago
-
As discussed [here ](https://forum.mysensors.org/topic/4694/mqtt_esp8266_gateway-and-1mhz-node/12)I propse an delay(2) for the gateway upon responding to an I_PING request.
This might not yet be a wh…
-
This allows for direct entry of real operating frequency...
Now:
```
void RFM69::setFrequency (uint32_t FRF)
{
writeReg(REG_FRFMSB, FRF >> 16);
writeReg(REG_FRFMID, FRF >> 8);
writeReg(REG_FRF…
-
The fix for the long term, is radio abstraction...
ie: radio = rfm69c, or radio = rfm69w, or radio = rfm69hw, or radio = nRF24 or radio = xyz
This should allow using the RadioHead lib in the future..…
-
Hello,
i'm rather fresh in this topic, but the gateway 2.4 is not working.
I tried to use an arduino uno with ethernet shield, i adjusted all values and uncommented the debug parameter for radio, bu…
-
https://github.com/jcw/jeelib
Used by [JeeLabs](http://jeelabs.net) wireless nodes (JeeNode) and RFM12 / RF69 wireless RF modules.
Also used by [OpenEnergyMonitor](https://openenergymonitor.org) har…
-
What happened to this project? Because I like having the USB port on the board I am working on a 32u4 based + RF69 radio board. Been having trouble getting this to work with the Moteino RFM69 librar…
-
It may be possible to discard an incoming packet if canSend gets called immediately after IRQ_ENABLE in the interrupt handler below.
void RF69::interrupt_compat () {
if (rxstate == T…
-
in RFM69.h
You may want to put a #elif defined for ESP8266 at end ->> #elif defined(ARDUINO_ARCH_ESP8266)
with the else being a processor not define message...
// INT0 on AVRs should be connected…
-
It appears that the max packet size is limited by the radio type. In a given system, one uses only one radio type, so:
1) system packed size should be set by radio type or config file option, allowin…