We're using Bleak as bluetooth backend, which supports Windows, MacOS and Linux.
Since the Crownstone communicates through BLE, we can use BLE to tell it to do things!
This library works with Python 3.7 and higher.
If you want to use python virtual environments, take a look at the README_VENV
We use pip3
in the example below because pip is usually the python 2 client. If you're using virtual environments, it could be that pip3 does not exist there. In that case, use pip.
pip3 install crownstone-ble
This library uses async methods. This is part of Python and uses the asyncio core module to do this. Async methods must be awaited. If you're unsure about how to use these, there's a million guides and tutorials online. We will assume you know how to use these in the rest of the documentation.
To use Crownstone BLE, you first import it from crownstone_ble.
from crownstone_ble import CrownstoneBle
ble = CrownstoneBle(bleAdapterAddress="00:32:FA:DE:15:02")
CrownstoneBle is composed of a number of top level methods and modules for specific commands. We will first describe these top level methods.
When initializing the CrownstoneBle class, you can provide an bleAdapterAddress if you're on linux. You can get these addressed by running:
hcitool dev
These addresses are in the "00:32:FA:DE:15:02" format. The constructor is not explicitly called with init, but like this:
ble = CrownstoneBle(bleAdapterAddress="00:32:FA:DE:15:02")
On other platforms you can't define which bleAdapter to use.
This will wait until it has received an advertisement from the Crownstone with the specified address. Once it has received an advertisement, it knows the mode. We will return once we know.
It can raise a CrownstoneBleException with the following types:
BleError.NO_SCANS_RECEIVED
We have not received any scans from this Crownstone, and can't say anything about it's state.
async def waitForMode(self, address, requiredMode: CrownstoneOperationMode, scanDuration=3) -> CrownstoneOperationMode
This will wait until it has received an advertisement from the Crownstone with the specified address. Once it has received an advertisement, it knows the mode. We will scan for the scanDuration amount of seconds or until the Crownstone is in the required mode.
It can raise a CrownstoneBleException with the following types:
BleError.NO_SCANS_RECEIVED
We have not received any scans from this Crownstone, and can't say anything about it's state.BleError.DIFFERENT_MODE_THAN_REQUIRED
During thescanDuration
seconds of scanning, the Crownstone was not in the required mode.
Shut down the BLE module. This is should be done on closing your script.
setSettings(adminKey: string, memberKey: string, basicKey: string, serviceDataKey: string, localizationKey: string, meshApplicationKey: string, meshNetworkKey: string, referenceId="PythonLib")
The Crownstone uses encryption by default. There are 3 keys used. You can find more information on that in the protocol. These keys are 16 characters long like "adminKeyForCrown" or 32 characters as a hex string like "9332b7abf19b86ff48156d88c687def6". The referenceId is optional. If you know what you're doing, you can disable the encryption but it should never be required.
As an alternative to using setSettings, you can load it from a json file. The path is relative to the script being executed. An example of this json file is:
{
"admin": "adminKeyForCrown",
"member": "memberKeyForHome",
"basic": "basicKeyForOther",
"serviceDataKey": "MyServiceDataKey",
"localizationKey": "aLocalizationKey",
"meshApplicationKey": "MyGoodMeshAppKey",
"meshNetworkKey": "MyGoodMeshNetKey",
}
This will connect to the Crownstone with the provided MAC address. You get get this address by scanning or getting the nearest Crownstone. More on this below.
async setupCrownstone(address: string, sphereId: int, crownstoneId: int, meshDeviceKey: string, ibeaconUUID: string, ibeaconMajor: uint16, ibeaconMinor: uint16)
New Crownstones are in setup mode. In this mode they are open to receiving encryption keys. This method facilitates this process. No manual connection is required.
- address is the MAC address.
- sphereId is a uint8 id for this Crownstone's sphere.
- crownstoneId is a uint8 id for this Crownstone.
- meshDeviceKey is a 16 character string.
- ibeaconUUID is a string like "d8b094e7-569c-4bc6-8637-e11ce4221c18".
- ibeaconMajor is a number between 0 and 65535.
- ibeaconMinor is a number between 0 and 65535.
This will disconnect from the connected Crownstone.
This will scan for scanDuration in seconds and return an array of the Crownstone it has found. This is an array of dictionaries that look like this:
{
"address": string, # mac address like "f7:19:a4:ef:ea:f6"
"setupMode": boolean, # is this Crownstone in setup mode?
"validated": boolean, # if True, this Crownstone belongs to your Sphere (ie. it can be decrypted by the provided keys).
"rssi": Float # average of the rssi of this Crownstone. If None, there have been no valid measurements.
}
This array can be directly put in the 'addressesToExclude' field of the 'getNearest..' methods.
This will start scanning for Crownstones in a background thread. The scanDuration
denotes how long we will scan for.
Once scanning is active, BleTopics.advertisement
events will be triggered with the advertisements of the
Crownstones that share our encryption keys or are in setup mode.
This will stop an active scan.
async getNearestCrownstone(rssiAtLeast=-100, scanDuration=3, returnFirstAcceptable=False, addressesToExclude=[]) -> ScanData or None
This will search for the nearest Crownstone. It will return ANY Crownstone, not just the ones sharing our encryption keys.
- rssiAtLeast, you can use this to indicate a maximum distance
- scanDuration, the amount of time we scan (in seconds)
- returnFirstAcceptable, if this is True, we return on the first Crownstone in the rssiAtLeast range. If it is False, we will scan for the timeout duration and return the closest one.
- addressesToExclude, this is an array of either address strings (like "f7:19:a4:ef:ea:f6") or an array of dictionaries that each contain an address field (like what you get from "getCrownstonesByScanning").
If anything was found, the ScanData will be returned. This datatype is defined here.
async getNearestValidatedCrownstone(rssiAtLeast=-100, scanDuration=3, returnFirstAcceptable=False, addressesToExclude=[]) -> ScanData or None
Same as getNearestCrownstone but will only search for Crownstones with the same encryption keys. If anything was found, the ScanData will be returned. This datatype is defined here.
async getNearestSetupCrownstone(rssiAtLeast=-100, scanDuration=3, returnFirstAcceptable=False, addressesToExclude=[]) -> ScanData or None
Same as getNearestCrownstone but will only search for Crownstones in setup mode. If anything was found, the ScanData will be returned. This datatype is defined here.
The modules contain groups of methods. You can access them like this:
import asyncio
from crownstone_ble import CrownstoneBle
# initialize the Bluetooth Core
ble = CrownstoneBle()
async def example():
# set the switch stat eusing the control module
await ble.connect(address) # address is a mac address (or handle on OSX)
await ble.control.setSwitch(0)
await ble.disconnect()
loop = asyncio.get_event_loop()
loop.run_until_complete(example())
Methods:
You can switch the Crownstone. 0 for off, 100 for on, between 0 and 100 to dim. There are also special values to be found in SwitchValSpecial
. If you want to dim, make sure dimming is enabled. You can enable this using the allowDimming()
method.
Assuming you have the encryption keys, you can use this method to put the Crownstone back into setup mode.
Enable or disable dimming on this Crownstone. Required if you want to dim with setSwitch()
.
Tell the Crownstone to disconnect from you. This can help if your Bluetooth stack does not reliably disconnect.
Lock the switch. If locked, its switch state cannot be changed.
Restart the Crownstone.
This is used to get state variables from the Crownstone. [https://github.com/crownstone/bluenet/blob/master/docs/PROTOCOL.md#state-packet-1]
The modules contain groups of methods. You can access them like this:
import asyncio
from crownstone_ble import CrownstoneBle
# initialize the Bluetooth Core
ble = CrownstoneBle()
async def example():
# set the switch state using the control module
await ble.connect(address)
switchstate = await ble.state.getSwitchState()
await ble.disconnect()
loop = asyncio.get_event_loop()
loop.run_until_complete(example())
Get the switch state as SwitchState
class.
Get the time on the Crownstone as a timestamp since epoch in seconds. This has been corrected for location.
This will subscribe for a single event. After this event, the listener will be removed automatically. It still returns a unsubscriptionId if you want to cleanup before the event occurs.
Returns a subscription ID that can be used to unsubscribe again with the unsubscribe method
This will stop the invocation of the function you provided in the subscribe method, unsubscribing you from the event.
These events are available for the BLE part of this lib:
This is a topic to which events are posted which are unique. The same message will be repeated on the advertisement and the rawAdvertisement packets.
This topic will broadcast all incoming Crownstone scans, including those that do not belong to your sphere (ie. can't be decrypted with your keys).
This topic will broadcast all incoming Crownstone scans which belong to your sphere (ie. which can be decrypted with your keys).
All these events contain the same data format:
class ScanData:
def __init__(self):
self.address = None # this is the handle of the device that broadcast the advertisement. This is usually a MAC address, but on OSX it is a handle.
self.rssi = None # the signal strength indicator
self.name = None # name of the device
self.operationMode = None # CrownstoneOperationMode enum (SETUP, NORMAL, DFU, UNKNOWN)
self.serviceUUID = None # the UUID of the scanned service
self.deviceType = None # type of Crownstone
self.payload = None # See below.
self.validated = None # Whether your provided keys could decrypt this advertisement
These fields are always filled. The payload will differ depending on what sort of data is advertised. You can see all possible types here.
These payloads all have a type
field which is defined here.
Payloads come in these flavours:
- CROWNSTONE_STATE
- CROWNSTONE_ERROR
- EXTERNAL_STATE
- EXTERNAL_ERROR
- ALTERNATIVE_STATE
- HUB_STATE
- MICROAPP_DATA
- SETUP_STATE
You can obtain the eventBus directly from the lib:
from crownstone_ble import BleEventBus, BleTopics
# simple example function to print the data you receive
def showNewData(data):
print("received new data: ", data)
# Set up event listeners
subscriptionId = BleEventBus.subscribe(BleTopics.newDataAvailable, showNewData)
# unsubscribe again
BleEventBus.unsubscribe(subscriptionId)
If bluetooth seems stuck, try:
sudo rfkill block bluetooth
sudo rfkill unblock bluetooth