Kongduino
                                            Kongduino
                                        
                                    It is quite complex, and depends on many factors. First, the uses of DIOØ to 5 depends on whether the chip is in Continuous Mode or in Packet Mode. Then,...
Just one nitpick. `REG_MODEM_CONFIG_2` contains only two bits of the timeout, ie bits 9 and 1 in position 1 and 0. You should probably do something like this to be...
Please format the code properly (add 4 spaces before every line, or surround the code with 3 backticks ` before the first line and after the last line; also you...
433 is not an issue – at least not a technical one. I am not sure whether it is legal everywhere in the EU but considering most cars/gates remote controls...
@IoTThinks I know, I have a few :-) I was being slightly rhetorical. I believe the chip is fried at this point. A sustained application of good ole 5v probably...
You're missing two lines I'd think: ```c SPI.begin(SCK, MISO, MOSI, SS); // put the right pin numbers or -1 for default. On my TTGO it's 5, 19, 27, 18 LoRa.setPins(SS,...
There's an issue with `LoRa.onReceive(onReceive)`. It should be used only once, in `setup()`, like you have it, commented out. But it should not be used in conjunction with `LoRa.receive()`, as...
The issue here is that in order to separate the key from the value, you're going to need a separator, like`,` or `\t`, or have a fixed format, like 8...
Please edit your post so that your code is surrounded by THREE backticks, before the first line and after the last line. As it is now it's unreadable. I do...
Ok so now that your code is readable, I see a couple of issues. Here is your `loop()`, slightly reformatted: ```c void loop() { if (WiFi.status() != WL_CONNECTED) { reconnect();...