├── .gitignore ├── README.md ├── auth.py ├── constants.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.log 3 | heartrate_*.* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zontex/Mi_Band_Raspberry_Pi/HEAD/README.md -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zontex/Mi_Band_Raspberry_Pi/HEAD/auth.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zontex/Mi_Band_Raspberry_Pi/HEAD/constants.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zontex/Mi_Band_Raspberry_Pi/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bluepy 2 | pycrypto 3 | crc16 4 | --------------------------------------------------------------------------------