Mykhailo Lesyk

Results 21 comments of Mykhailo Lesyk

Looks like AD410 implements bidirectional audio using ONVIF Profile T. At least Amcrest View Pro Android app which works without any internet/cloud is able to implement bi-directional audio with AD410....

From time to time scrolling stops working in Both in chat window and contact list. Cannot find exact steps to reproduce, will try to find tomorrow. Version - 4.2.0 OS...

Hmm, is it OK that for RAK pins 15 and 16 are used for GPS? https://github.com/meshtastic/Meshtastic-device/blob/ade32b1827b7dc554716625e50c3ccfd8b87085b/variants/rak4631/variant.h#L101-L102 https://github.com/meshtastic/Meshtastic-device/blob/ade32b1827b7dc554716625e50c3ccfd8b87085b/variants/rak4631/variant.h#L198-L199

After I fixed pins according to original variant.h: https://github.com/RAKWireless/RAK-nRF52-Arduino/blob/ca1dd0b2b17a9bd12a6d9a4d0f39b528e2104efc/variants/WisCore_RAK4631_Board/variant.h#L122-L123 Serial module started working (at least I can get output on TX0/RX0 pins).

Yes, just re-checked, having this only change: ```diff -#define PIN_SERIAL2_RX (8) -#define PIN_SERIAL2_TX (6) +#define PIN_SERIAL2_RX (19) +#define PIN_SERIAL2_TX (20) ``` Serial module fully works.

Right, I just wanted to mention that serial module works with 19/20 pins and does not with 15/16 because they are GPS :)

Just small note - text messages sent through serial appeared in main channel and not in "serial" channel. If it is desired, then OK.

As I mentioned just disabling bluetooth will disable usage of the end nodes. Just disable pairing while enable bluetooth running will be better. Regarding fixed pin - it will be...

Few links to read: * https://mynewt.apache.org/latest/network/ble_sec.html - Pairing should be disabled Potential BLE framework (NimBLE) solutions: * User whitelist (add paired device to whitelist): https://github.com/apache/mynewt-nimble/blob/f7ebfaf95b44013c8ab938edbab2bf98bebc7d8b/nimble/syscfg.yml#L42 * Disable pairing using following...

Interestingly: https://github.com/meshtastic/Meshtastic-device/search?q=serial_disabled is empty instead we have: https://github.com/meshtastic/Meshtastic-device/search?q=serial_enabled However: ``` meshtastic --set device.serial_enabled false Connected to radio LocalConfig and LocalModuleConfig do not have attribute device.serial_enabled. ``` Something is off here...