Last active
November 15, 2021 14:30
-
-
Save scoates/840f2d30e25d6b5e6daa2c3251f5af39 to your computer and use it in GitHub Desktop.
Bluetooth Scale in Python (Sinocare CK-793, ETEKCITY, likely others built on the same chipset)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@raspberrypi:~# python3 scale.py XX:RE:DA:CT:ED:XX | |
Connected. | |
152g | |
444g | |
688g | |
726g | |
783g | |
853g | |
978g | |
1753g | |
1814g | |
1880g | |
2124g | |
2451g | |
2565g | |
2595g | |
2334g | |
2360g | |
173g | |
0g | |
0g | |
0g | |
^C | |
root@raspberrypi:~# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import sys | |
from bleak import BleakClient | |
import bleak.exc | |
address = sys.argv[1] | |
char_uuid = "0000fff4-0000-1000-8000-00805f9b34fb" | |
first_connect = True | |
def callback(sender: int, data: bytearray): | |
grams = int.from_bytes(data[3:5], byteorder="little") | |
print(f"{grams}g") | |
async def run(address): | |
async with BleakClient(address) as client: | |
global first_connect | |
if first_connect: | |
print("Connected.") | |
first_connect = False | |
notify = await client.start_notify(char_uuid, callback) | |
loop = asyncio.get_event_loop() | |
while(True): | |
try: | |
loop.run_until_complete(run(address)) | |
except bleak.exc.BleakDBusError: | |
pass | |
except KeyboardInterrupt: | |
print() | |
sys.exit(0) |
Yeah great job! Just happy that you found it useful. Cheers!
@scoates Am I right to assume that you will use the scale for profiling something? Like coffee, perhaps? I am looking for a Bluetooth scale that I can listen to preferably on the mobile side so that I can make a profiler app, but the code above is all Greek to me :) Do you know if this is possible for Sinocare CK-793 scale?
I actually switched my plans to use a custom piece built around a load cell and hx711, but it sounds to me like this would work for you, yeah. I used a ETEKCITY scale, but the Sinocare one should work, yep. Probably can't help too much with the basic coding, though.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! Yep! My use case (which I didn't make clear) is that I'd like to use this scale for continuous measurement. The demo above is me putting my finger on the scale and increasing it over time. It also doesn't account for the
sign
. (-: