Group Details Private
administrators
Admin
Member List
-
RE: IKEA UTRUSTA remote control
@JanJaap-Jagtenberg according to https://www.reddit.com/r/tradfri/s/gvFcOmHe8h the ”best” solution is to replace the led driver (but keep the lights).
An alternative might be to buy a used remote on ebay or a local equivalent.
Do you know what is wrong with your current remote? Maybe it can be fixed?
-
RE: Ghost Child
@FcNanoLed sensor IDs must be 0-254. For example, ID 635 will be transmitted as 123 (635 modulo 256).
Change all IDs to be between 0 and 254.
-
RE: MQTT-Help me understand about the MQTT Gateway.
@dpcons you can have as many nrf24l01 MySensors networks as you like.
They are differentiated by channel and base radio id.
The reason for multiple networks may be more control, isolation, lab/test/production network, approaching the limit (255) of the number of nodes in a single network, separate network for high-traffic devices, different versions of MySensors, interference, range problems, and more.
-
RE: MQTT-Help me understand about the MQTT Gateway.
@dpcons there can only be one MySensors gateway in a MySensors network.
You can have as many MySensors networks as you like.
A MySensors network can exist of only a gateway (no other MySensors nodes required)
If that's not the case, is there a point to having one, if I already have an esp8266 WIFI gateway with a nRF24L01.
There can be points. I don’t know your needs.
If a radio is required on the MQTT, does that mean another nRF24L01 can be connected to the system? Is that possible?
No radio is required on the mqtt gateway.
A mqtt gateway can have a nrf2l01.I guess what you're saying is that you only need one 2.4G network, be it wifi, mqtt or serial. True?
Could you elaborate on what you mean by ”one 2.4G network”? Do you mean one MySensors nrf24l01 network? Or one 2.4GHz wifi network? Or something else?
-
RE: Meet in Malmö, Summer 2016?
Haha. Yeah!. You're always welcome to revisit over some beers and bbq!
-
RE: MQTT-Help me understand about the MQTT Gateway.
@dpcons sensor nodes can not post a mqtt message. Sensor nodes can’t even be aware that they talk to a mqtt gateway: the nodes don’t know if the gateway is wifi, mqtt, serial or any other type.
With that said, sensor nodes can send any message to a gateway, and the gateway will forward the message on mqtt (if it is a mqtt gateway). Simplest example is probably something like https://github.com/mysensors/MySensors/blob/development/examples/BatteryPoweredSensor/BatteryPoweredSensor.ino or https://github.com/mysensors/MySensors/blob/development/examples/BinarySwitchSleepSensor/BinarySwitchSleepSensor.ino
-
RE: Getting system time from the controller
@dpcons try changing
unsigned long
in your sketch touint32_t
Could be that the override needs to have an exact match.