T94T

Results 19 comments of T94T

Try using this: ``` #define CHANNEL 1 for (uint8_t i = 0; i < 9; i++) { if (i != CHANNEL) { LMIC_disableChannel(i); } } ```

:+1: Would be great to have some kind of a solution or workaround.

Found it: You can reset the duty cycle limits after sleep by calling: ``` LMIC.bands[BAND_MILLI].avail = os_getTime(); LMIC.bands[BAND_CENTI].avail = os_getTime(); LMIC.bands[BAND_DECI].avail = os_getTime(); ``` Ensure to still meet all LoRa...

If your RPi is connected over WIFI you can replace "eth0" with "wlan0" in the main.cpp file.

**mDNS**, **threading extentions** (https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/blob/fede6f610c9952c7242fc309c2bb4efc9afb0919/MicroPython_BUILD/components/micropython/py/modthread.c) and the ability to create the **custom file image** would be great to have! @carterw What's your schedule? Will you create a new fork? Can anyone...

We are also interested in exact the same feature. Mainly on ESP32S2.

@sedlalu2: Can you please list the buildroot packages you have enabled for your setup or can you provide a corresponding defconfig?

Sounds great! We use websockets a lot and it seems to run much more stable with PsychicHttp than with ESPAsyncWebServer. ESPAsyncWebServer is not maintained for a longer time and it...

Really cool! I just tested your fork, and it works great.

Uploading with `elegantota_upload.py` throws an error: ` Request method for this URI is not handled by server` Is there a server listener missing?