A Bluetooth scale integration for coffee machines
Project description
pyfelicita
Felicita integration package for python
Example code:
import asyncio
from pyfelicita import Felicita
async def main():
addresses = await Felicita.find_felicita_devices()
if not addresses:
print("No devices found")
return
address = addresses[0]
client = await Felicita.create(address)
if not client:
print("Failed to connect to the scale")
return
try:
await client.set_weight_and_timer_mode()
await asyncio.sleep(0.1)
await client.tare()
await asyncio.sleep(0.1)
await client.reset_timer()
await asyncio.sleep(0.1)
await client.start_timer()
while client.is_connected():
await asyncio.sleep(0.1)
print(
f"Weight: {client.current_weight} {client.current_scale_unit}, "
f"Battery: {client.current_battery_level:.2f}%"
)
if(client.is_timer_running):
print(f"Time elapsed: {client.timer_time_elapsed}")
if(client.current_weight > 69):
await client.stop_timer()
print("Criteria met, stopping program")
break
finally:
if client.is_connected():
await client.disconnect()
else:
print("Scale stopped responding")
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyfelicita-0.1.5.tar.gz
(4.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyfelicita-0.1.5.tar.gz.
File metadata
- Download URL: pyfelicita-0.1.5.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39de7b67eebec51fdb1dd7271074ad969862d588708d7bed4a339c533bf2078b
|
|
| MD5 |
8bcc42ee5490dfcf48df243485cb8ed4
|
|
| BLAKE2b-256 |
234135cc8b87842b9f9340768fe082b37b5311916d28cce3dc2b5c2306bdf914
|
File details
Details for the file pyfelicita-0.1.5-py3-none-any.whl.
File metadata
- Download URL: pyfelicita-0.1.5-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
915495d687b03e99df088f665b95e258a1b66c206970df7e4627e71c6957b53a
|
|
| MD5 |
b9ff08bf4cbd1b01e136790b2ff918df
|
|
| BLAKE2b-256 |
d55614291efa9796b8f5b4aca457a03d0cc107b16e92c4a1d3a36f3da3931eb4
|