Hi2All!
Surprising is here. After about 24hours I refresh HA and suddenly my motion sensor was integrated.
There is also second entity > battery : 0 , have to look deeper into that for understanding.
Need to change little in the sketch, because don't want every short time 'no movement' so only when there is motion and maybe once a hour indication sensor is alive.
Meantime I found 3 other good threats:
https://forum.mysensors.org/topic/11200/finally-progress-evidence-based-radio-testing-method-and-capacitors
https://forum.mysensors.org/topic/1664/which-are-the-best-nrf24l01-modules/27
https://forum.mysensors.org/topic/9550/build-a-reliable-power-supply-chain
Very usefull for me also finally progress because of lacking time in the past.
Great jobs are done here!
Thanks for this all of you guys or girls!
@mfalkvidd Sorry, I am new to this forum and intended to ask this question in a different thread (New library to read Arduino VCC supply level without resistors... ). A new topic was created instead.
Paai
@sineverba See here (bit old, but most is still valid): https://forum.mysensors.org/topic/1004/watchdog-on-ethernet-gateway
MySensors does globally define a watchdog interrupt handler (for sleeping nodes, but always present). Keep that in mind if you want to do something with the interrupt handler.
@Boots33 said in Arudino Mega hangs when serial GW is down:
de should still attempt to connect even after it has moved on.
I have similar experience, only restart allows connecting the node to the gateway. I have not done any testing, but I found it out after my wife unplugged gateway couple of times as it is still powered by AC USB charger in power strip.
Did you ever get this feature working on the RS485 transport @Redguy ? I'm also building a rs485 mysensors network and would love to know how you went.
Hello,
you are missing the sensor.begin() to initialize the sensor. Return value will tell you if initialization succeeded or not.
if (!sensor.begin()) {
#ifdef MY_DEBUG
Serial.println("FAILED TO INIT SENSOR !!!!");
#endif
...
}
Thanks so much for that, I did wonder. My nodes include a old SenseBender node and I don't have an easy means to update this, so looks like I'll go for the older version.
@Jean-Pierre-Rojas-Vanegas
I already found a solition. By default, the MyConfig.h library sets CE, CS, to pins 9, 10, respectively. I simply have to manually set CE and CS on pins 17 and 18. When I connect the gateway, it assigns me an ID and shows me the image on the display.
@Uhrheber said in ESP8266 gateway using RFM95 LoRa:
I already ordered this:
https://github.com/hallard/WeMos-Lora
And its working with mysensors and Domoticz ! ;)