Tools written in Go for interfacing with Xiaomi Flora sensors for IoT use cases.
Go to file
cn ecab1a41f5 module: refactor Makefile, add help 2020-08-30 20:42:58 +02:00
.github ci: update go versions and github actions 2020-08-21 16:53:56 +02:00
cmd miflorad: check meta data incl battery level every hour instead daily 2019-05-20 18:28:29 +02:00
common module: change assert.Equal arguments to match (expected, actual) 2019-03-03 22:59:32 +01:00
utils utils: remove unused legacy tool 2019-05-15 17:03:50 +02:00
.gitignore module: add release instructions and script 2019-01-25 10:41:47 +01:00
.tool-versions module: add asdf .tool-versions 2020-01-24 16:00:37 +01:00
LICENSE module: add license information 2019-01-25 12:59:30 +01:00
Makefile module: refactor Makefile, add help 2020-08-30 20:42:58 +02:00
README.md ci: use github actions 2019-12-21 10:09:59 +01:00
go.mod module: update github.com/stretchr/testify to version 1.6.1 2020-06-11 14:47:10 +02:00
go.sum module: update github.com/stretchr/testify to version 1.6.1 2020-06-11 14:47:10 +02:00
notes.md module: setup project structure, document and add utilities 2018-12-22 13:12:14 +01:00
renovate.json module: adjust to less noisy schedule for digest dependencies and rebase stale PRs in renovate 2019-02-22 22:40:07 +01:00

README.md

miflorad

Build Status

This project aims to produce tools written in Go for interfacing with Xiaomi Flora sensors for IoT use cases.

Misc

If the Intel Wireless Bluetooth 8265 chip gets stuck (source):

# pip install pyusb
sudo python utils/reset.py

The output of gatttool listing all characteristics of a Xiaomi Flora sensor (firmware version 2.7.0):

$ gatttool -b C4:7C:8D:xx:xx:xx --characteristics
handle = 0x0002, char properties = 0x02, char value handle = 0x0003, uuid = 00002a00-0000-1000-8000-00805f9b34fb
handle = 0x0004, char properties = 0x02, char value handle = 0x0005, uuid = 00002a01-0000-1000-8000-00805f9b34fb
handle = 0x0006, char properties = 0x0a, char value handle = 0x0007, uuid = 00002a02-0000-1000-8000-00805f9b34fb
handle = 0x0008, char properties = 0x02, char value handle = 0x0009, uuid = 00002a04-0000-1000-8000-00805f9b34fb
handle = 0x000d, char properties = 0x22, char value handle = 0x000e, uuid = 00002a05-0000-1000-8000-00805f9b34fb
handle = 0x0011, char properties = 0x1a, char value handle = 0x0012, uuid = 00000001-0000-1000-8000-00805f9b34fb
handle = 0x0014, char properties = 0x02, char value handle = 0x0015, uuid = 00000002-0000-1000-8000-00805f9b34fb
handle = 0x0016, char properties = 0x12, char value handle = 0x0017, uuid = 00000004-0000-1000-8000-00805f9b34fb
handle = 0x0018, char properties = 0x08, char value handle = 0x0019, uuid = 00000007-0000-1000-8000-00805f9b34fb
handle = 0x001a, char properties = 0x08, char value handle = 0x001b, uuid = 00000010-0000-1000-8000-00805f9b34fb
handle = 0x001c, char properties = 0x0a, char value handle = 0x001d, uuid = 00000013-0000-1000-8000-00805f9b34fb
handle = 0x001e, char properties = 0x02, char value handle = 0x001f, uuid = 00000014-0000-1000-8000-00805f9b34fb
handle = 0x0020, char properties = 0x10, char value handle = 0x0021, uuid = 00001001-0000-1000-8000-00805f9b34fb
handle = 0x0024, char properties = 0x0a, char value handle = 0x0025, uuid = 8082caa8-41a6-4021-91c6-56f9b954cc34
handle = 0x0026, char properties = 0x0a, char value handle = 0x0027, uuid = 724249f0-5ec3-4b5f-8804-42345af08651
handle = 0x0028, char properties = 0x02, char value handle = 0x0029, uuid = 6c53db25-47a1-45fe-a022-7c92fb334fd4
handle = 0x002a, char properties = 0x0a, char value handle = 0x002b, uuid = 9d84b9a3-000c-49d8-9183-855b673fda31
handle = 0x002c, char properties = 0x0e, char value handle = 0x002d, uuid = 457871e8-d516-4ca1-9116-57d0b17b9cb2
handle = 0x002e, char properties = 0x12, char value handle = 0x002f, uuid = 5f78df94-798c-46f5-990a-b3eb6a065c88
handle = 0x0032, char properties = 0x0a, char value handle = 0x0033, uuid = 00001a00-0000-1000-8000-00805f9b34fb
handle = 0x0034, char properties = 0x1a, char value handle = 0x0035, uuid = 00001a01-0000-1000-8000-00805f9b34fb
handle = 0x0037, char properties = 0x02, char value handle = 0x0038, uuid = 00001a02-0000-1000-8000-00805f9b34fb
handle = 0x003b, char properties = 0x02, char value handle = 0x003c, uuid = 00001a11-0000-1000-8000-00805f9b34fb
handle = 0x003d, char properties = 0x1a, char value handle = 0x003e, uuid = 00001a10-0000-1000-8000-00805f9b34fb
handle = 0x0040, char properties = 0x02, char value handle = 0x0041, uuid = 00001a12-0000-1000-8000-00805f9b34fb

Doing a release

Install the github-release binary helper somewhere into your path as github-release.

You also need a personal access token for your Github account.

The below will create a Github release of miflorad based on your current git working copy and create a matching git tag:

export GITHUB_RELEASE_ACCESS_TOKEN=my-personal-access-token
MIFLORAD_VERSION=x.y.z make release

License

miflorad is licensed under the Apache License, Version 2.0. See LICENSE for more information.