├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── ble_advertising.py ├── ble_examples ├── ble_temperature.py ├── ble_temperature_central.py ├── ble_uart_peripheral.py └── ble_uart_repl.py ├── dev-requirements.txt ├── images ├── ble_scanner_mac.png ├── ble_scanner_read.png └── ble_scanner_write.png ├── m5stack.py ├── main.py ├── micropy.json ├── pymakr.conf └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/README.md -------------------------------------------------------------------------------- /ble_advertising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/ble_advertising.py -------------------------------------------------------------------------------- /ble_examples/ble_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/ble_examples/ble_temperature.py -------------------------------------------------------------------------------- /ble_examples/ble_temperature_central.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/ble_examples/ble_temperature_central.py -------------------------------------------------------------------------------- /ble_examples/ble_uart_peripheral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/ble_examples/ble_uart_peripheral.py -------------------------------------------------------------------------------- /ble_examples/ble_uart_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/ble_examples/ble_uart_repl.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | micropy-cli 2 | -------------------------------------------------------------------------------- /images/ble_scanner_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/images/ble_scanner_mac.png -------------------------------------------------------------------------------- /images/ble_scanner_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/images/ble_scanner_read.png -------------------------------------------------------------------------------- /images/ble_scanner_write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/images/ble_scanner_write.png -------------------------------------------------------------------------------- /m5stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/m5stack.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/main.py -------------------------------------------------------------------------------- /micropy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/micropy.json -------------------------------------------------------------------------------- /pymakr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemariva/uPyM5BLE/HEAD/pymakr.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------