Rainer Fritz
Rainer Fritz
The device name is very long with up to 17 characters. Do you mean reducing this would lead in more space for the local name? Apart from that we have...
iOS caches the device name when it connects to the device and shows then always the full cached device name, which is not the case on android. I also use...
Thats the code for advertising: ``` NimBLEAdvertising *pAdvertising = NimBLEDevice::getAdvertising(); pAdvertising->reset(); pAdvertising->setName(strBLEName); //BLE Local Name pAdvertising->setManufacturerData(strBLEManufData); pAdvertising->addServiceUUID(SERVICE_UUID); pAdvertising->setScanResponse(false); // true ANDROID false IPhone pAdvertising->start(0); ``` Even when I set the...
The only way is to use a scan-response or to use manufacturer data. Currently I go with the latter. It would be really awesome to get an example code here...
I try to get the waveshare lora hat running with SX1262 and gps. Took me a little bit to find the right documentation. They provide a LoRaRF version, which works...
Before you test it with that library, make sure you uninstall from your primary python environment the lorarf package. Thats how I did it: - generate a virtual python environment...
Are you sure you have this zip downloaded? [Sample Code](https://files.waveshare.com/wiki/SX1262-XXXM-LoRaWAN-GNSS-HAT/Sx126x_lorawan_hat_code.zip) I did not install it with the setup.py, I copied the library in the into the venv and installed it...
Hi longtomin! Saw this possibility also and tried it out myself but I can't get the lora chip initialised, getting error code -707. I am using SPI channel 0 for...
Awesome! Thanks, the 0.0 and false at the end did the trick to not use TCXO and LDO.
Hi Thierry! Thanks for that really fast reply, much appreciated! I don't know what the problem was, maybe a typo or whatever, but it works now. Thanks a lot for...