Charles

Results 155 comments of Charles

From where do you measure your current? Between 5V and the DC/DC input? Because if so, you've got a LED on 3V3 rail that should also consume about 2mA plus...

@ZaneL gnat basic sketch should consume 2 to 4uA. Try the following sketch on gnat ```cpp #include #include "LoRaWAN.h" #define myLed1 10 // blue led #define VbatMon A1 #define Vbat_en...

Gnat has 2 pins to monitor battery, one to enable reading (so disabled when not reading to save battery) and one analog one to read the value. the enabled mode...

@battosai30 I'm using internal devEUI of Murata on Orange portal, as @GrumpyOldPizza wrote only the "trio" devEUI/appEUI/appKey need to be unique. If you let Orange to generate your appEUI (as...

I'm basic, just used api :-) ```cpp char lora_deveui[18]; LoRaWAN.begin(EU868); LoRaWAN.getDevEui(lora_deveui, sizeof(lora_deveui)); DBG("LORA DevEUI:", lora_deveui); DBG("LORA AppEUI:", appEui); DBG("LORA AppKey:", appKey); LoRaWAN.joinOTAA(appEui, appKey, (const char *) lora_deveui); ``` And I...

Yeah I heard that about objenious certification. A customer has a account and he asked me to provision devices. I’ll check to see if I can add some murata boards

@SloMusti I have no doubts it works perfectly, my thought was more to be sure I'm using it correctly

Well, just depending on which I/O pin is connected VBUS, so depending on your board. check variants files of your board for `STM32L0_CONFIG_PIN_VBUS` defined symbol GPIO. For GNAT board, you...

Sot sure what's we are able to do on this point, you know better than I. The idea is to be able to wake from sleep on hot plug and...

Thomas, Just to be sure to do the correct way A) - On startup call `enableWakeup()` set `onConnect()` and `onDisconnect()` callbacks - if usb is connected it works as usual...