Skip to main content

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


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.11.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyfelicita-0.1.11-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file pyfelicita-0.1.11.tar.gz.

File metadata

  • Download URL: pyfelicita-0.1.11.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

Hashes for pyfelicita-0.1.11.tar.gz
Algorithm Hash digest
SHA256 8378231448383b6314e77188106018451e2e03a18be7a6811c12cdbc65743760
MD5 a8698d6f5910b053479beb8a0906e224
BLAKE2b-256 1f76cdf3aab7c0be20f3576caa771aafd852143d8ac7687c6698c225387f7371

See more details on using hashes here.

File details

Details for the file pyfelicita-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: pyfelicita-0.1.11-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

Hashes for pyfelicita-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 3f759e7c336d41df8c2ba1db0080090ce3bd5700acf22e4fca9db549e351ddea
MD5 aca56742241d7b85ced3dbaed20a068b
BLAKE2b-256 d897db285f7789e1e90287d42371a22a503ed285e6805908368bfdee8ec691a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page