Tom Stöveken

Results 13 comments of Tom Stöveken

Connecting to two devices was a pain with the Bluedroid-Stack and just by switching to NimBLE the very same sourcecode (except changing the header to NimBLE) works without stalling and...

Hello, I can report of the same issue with Raspberry Pi: As you can see the CPU usage is high and the RAM consumption is growing over time: ![Bildschirmfoto_2021-10-05_18-15-11](https://user-images.githubusercontent.com/12876583/136062436-c99b1114-aad3-42f8-8dc1-603e1cef9d77.png) ![Bildschirmfoto_2021-10-05_18-17-43](https://user-images.githubusercontent.com/12876583/136062626-6a4b3316-0c27-4fe7-a534-68dbf3ddeca3.png)...

Good idea to separate the issues of high-CPU-load and memory-leak. As shown with [the simple script](https://github.com/Torxgewinde/MQTT-GPIO/blob/main/MQTT_GPIO.py) the old hardware itself is easily able to handle MQTT and GPIOs at a...

I wanted to set the volume from the command line and thanks to the comments here managed to knit together: - a [python script](https://github.com/Torxgewinde/forked-daapd-volume-setter/blob/master/output.py) and alternatively - a [BASH shell...

Hello @farrad , As a workaround you can use "Bridging": - At the device running ble2mqtt install mosquitto - configure a listener limited to localhost - configure ble2mqtt to use...

Some small success: I figured out how to send the temperature setpoint to such a heating-valve: ``` ##set to 30.0°C = ON (HEX value is 0x3C=60=2*30.0°C, 0x41 is a prefix)...

@DigiH: It does advertise its presence, but there is not a lot of info: ``` OpenMQTTGateway/BTtoMQTT/AABBCCDDEEFF {"id":"AA:BB:CC:DD:EE:FF","name":"CC-RT-BLE","rssi":-76} ``` with `mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoBT/config -m '{"pubadvdata":true}'` the output is not much better:...

There is a VERY detailed description of the protocol for these valves at https://reverse-engineering-ble-devices.readthedocs.io/en/latest/protocol_description/00_protocol_description.html Setting the mode to manual works: ``` ##set Manual Mode # byte 0: 40 # byte...

@markferry : I gave the suggestion to reboot a thumbs down, just because it does not address the main issue. I appreciate your comments though. I am still hoping someone...

With Arduino-IDE and the Arduino core for ESP32 selecting the Board "Firebeetle ESP32" compiles working firmware, a compatible/matching board is defined in https://github.com/espressif/arduino-esp32/blob/master/boards.txt#L7063 Here is a picture of the settings...