slavendam

Results 23 comments of slavendam

According to datasheet SWRST only resets registers where some settings are, but Frame memory with previous picture will remain. I've added "fillScreen(0x0000)" in init() function just before SWRST call to...

> Using React version `^16.14.0` with `@react-pdf/renderer": "^2.2.0` and i upgraded like; > > * Updated `@react-pdf/renderer` from `^2.2.0` to `3.0.0` > * Added an `overrides` key to my `package.json`...

https://github.com/mcci-catena/arduino-lmic/issues/938#issuecomment-1778100771 Check my answer here

@terrillmoore @DylanGWork I found issue in library. File lmic_au915.c, line 83, function LMICau915_maxFrameLen https://github.com/mcci-catena/arduino-lmic/blob/4ceb2b049b59bb2390491f2db63e4951b986d277/src/lmic/lmic_au915.c#L83 In line `if (LMICau915_getUplinkDwellBit())` there should be `if (LMICau915_getUplinkDwellBit() == 0)` because if dwel bit is...

If you set up SF before join that parameter will be deleted during join. In EU868 region (and AS923 I think also) device will try to join on SF7 and...

> Can you provide full example please? 1. Press CTRL+F while on this page, 2. find line "LMIC_setLinkCheckMode(0);" in example above 3. next to that add: ``` LMIC_setAdrMode(false); LMIC_setDrTxpow(DR_SF12, 14);...

> I am using this example with ABP method, but I am facing same problem. ABP doesn't go through process of joining so EV_JOINED is never called. For ABP you...

https://www.thethingsnetwork.org/docs/lorawan/frequency-plans/#au915-928 According to this, TTN doesn't support 250kHz BW

Use EEPROM memory

Change this ``` if (LMIC.txrxFlags & TXRX_ACK) { Serial.println("Received ack"); ``` with this: ``` if (LMIC.txrxFlags & TXRX_ACK) { Serial.println("Received ack"); Serial.println(LMIC.rssi); Serial.println(LMIC.snr); } ```