MySensors icon indicating copy to clipboard operation
MySensors copied to clipboard

MySensors library and examples

Results 120 MySensors issues
Sort by recently updated
recently updated
newest added

I have tried compiling the development version on my RPI3 with a RFM69HW radio same as the node (pro mini 3.3v) but I am getting -90dbm RSSI on node with...

RPi
RFM69

Some examples, for example https://www.mysensors.org/build/dimmer uses send() from within receive(). send() should not be called from within receive(). In the dimmer example, calling send() will probably not break anything, but...

Fixes #1300. The Arduino [SoftwareSerial](https://www.arduino.cc/en/Reference/softwareSerial) library (and its forks for various hardware platforms) appears to be compatible with the API currently used by the [RS485 transport](https://github.com/mysensors/MySensors/blob/aa76d266159d87cd460597657ac7f669a706fad5/hal/transport/RS485/MyTransportRS485.cpp). It contains the following...

I've got a few lights communicating via mysensors. When activiating multiple lights via a scene from homeassistant, it fails to set all lights correctly. The lights have soft signing enabled....

Add ATTiny85 support (#1382) Fix MY_DISABLED_SERIAL on AVR (#1505) Add support to hwCPUFrequency Add support to hwCPUTemperature

Todo: +) include SoftwareSerial to drivers +) include espsoftwareserial to drivers Changes in File MySensors.h replace line 372 with ---- `#if defined(MY_RS485_SWSERIAL) #if defined(ESP8266) || defined(ESP32) #include "drivers/ESPSoftwareSerial/SoftwareSerial.cpp" #elif #include...

enhancement

Automatic ID assignment doesn't work for RS485 transport. As mentioned in this post https://forum.mysensors.org/topic/4854/building-a-wired-rs485-sensor-network/23 . The problem is caused by: - setting sender id to 0 instead of 255 in...

Running the radio in a 4-pin configuration (MISO, MOSI, SCK, CSN) with CE pin pulled to VCC, requires the driver to switch to Power Down state before entering TX or...

enhancement
RF24

At this line: https://github.com/mysensors/MySensors/blob/aa76d266159d87cd460597657ac7f669a706fad5/hal/transport/RFM69/driver/new/RFM69registers_new.h#L922 It states that the recommended default for the FIFO Threshold is the FIFONOTEMPTY version of the constant. However, when the setting is set, this recommendation is...

On the AVR platform serialEventRun() is called even when MY_DISABLED_SERIAL is defined.