I have a mysensors dimmer. I couldn't switch it on till i moved the dimmer about 2 cm's. Then it worked great. When i move it back 2 cm's it stops working. What causes this? I have a capacitor on the nrf.
I would really like to get OTA working here as it's freezing outside and I have to go there to update the software in the greenhouse control system.
So please, can we have a 'how to' step-by-step guide to OTA? Please?
S.
Hello
I still didn't figure it out exactly, what is the issue with LGT8F328P and arduino, but for start, it can work, if you define 4x faster baud rate. So I define MY_BAUD_RATE 76800 and connect terminal with 19200, and it works. LGT is started in 8 MHz by default, and it looks like this is not corrected with mysensors. But this only helped for serial port, because later I had issues with DHT library timings.
If I later change speed to 16 MHz and start serial port again, it works as expected:
noInterrupts();
CLKPR = 0x80;
CLKPR = 0x01;
interrupts();
Serial.begin(19200);
@buxtronix thanks for the effort! Why not make a PR? 433MHz is a quite unique value proposition of MySensors. I'd recommend a quick search through the open issues on MySensors github, maybe some CC1101 support was requested already. In any way, I'd encourage to raise a PR to the development branch. Who knows, if we get some people engaged, maybe we can release a new official version of MySensors with improved hardware support.
Thx, Dirk.