Enter BLE SDK For PC is provided by EnterTech, and it is tailored for EnterTech's Bluetooth chips for PC. This SDK is developed in Python and can run on macOS, Linux, and Windows.
pip install enterble
- Search for Bluetooth devices
- Connect to Bluetooth devices
- Communicate with Bluetooth devices
- Adaptation for data exchange with EnterTech's Flowtime series chips
See examples
- Start scanning for devices
loop.run_until_complete(device_discover())
- Run simple.py
- Observe the device scanning situation
- Change the unique device ID to the one you scanned for your device (use UUID for macOS systems, MAC address for Win systems)
-
device_identify = ( "d2:ab:3f:c9:37:ad" if platform.system() != "Darwin" else "D5D4362A-1690-4204-B797-3015EEDB510E" )
-
- Start the code for data collection
loop.run_until_complete(data_collector())
- Run simple.py