rbelnienk / OWON-OW18B-BLE-Connector

This Script will connect to your OWON OW18B Multimeter via Windows machine Bluetooth.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OWON OW18B Bluetooth BLE Connector / Logger

This Script will connect to your OWON OW18B Multimeter via Windows machine Bluetooth.

Currently only Supports Volts and mVolts measurement, feel free to add more.

Before use make sure you install bleak or simply use the requirements.txt:

pip install bleak

The script prints out the values to the Terminal. Make sure your device is turned on and bluetooth is enabled before you execute the file.

BLE Characteristic:

The measurement Values are Published on the Notify Characteristic:

UUID: 0000fff4-0000-1000-8000-00805f9b34fb

Protocol:

Protocol is really simple. For each Measurement you will recieve 5 Bytes.

34 240 4 0 0 0

First Byte represents the Measurement Method e.g. 34 --> Volts Measurement.

Last two Bytes contain the Measurement Value. Last Byte from 0-127 counts the overflow of the 4th Byte. If last Byte is between 128-256 the value is negative.

About

This Script will connect to your OWON OW18B Multimeter via Windows machine Bluetooth.

License:MIT License


Languages

Language:Python 100.0%