Chirp Flutter Dev Colors - This repository contains Flutter application and python utility. It includes the demo of Chirp SDK on Flutter and how to transmit the data through audio to set the color of the light bulb.
I recently started exploring ChirpSDK - SDK for transmitting data through audio when I explore one of the non-internet or less costly hardware options for IoT solutions to transmit the data.
Chirp enables your apps to send and receive information using sound. A "chirp" encodes an array of bytes as an audio signal, which can be transmitted by any device with a speaker and received by any device with a microphone and Chirp SDK. It is designed to be robust over distances of several metres, and in noisy, everyday environments.
As the transmission takes place entirely via audio signals, no internet connection or prior pairing is required, and any device within hearing range can receive the data.
To keep it simple and as having fun, this project is developed in my twitch streams.
The idea of the project is we are going to send the data from mobile to another device through audio.
I've built this Flutter application that has list of dev brand main colors. For e.g
* Angular Red
* React Blue
* Vue Green
* Chirp Yellow
When you taps one of the list item, the app is sending the HEX value of the color through the audio. Then the python application running in my machine receives the audio through microphone, decodes the HEX value. Then its calling Philips HUE Bridge API to set the color of the light.
If you tap "Angular Red", then it sets the light bulb color to red through audio signal.
- Flutter
- Chirp SDK
- Python
- Philips Hue Light Bulb **
- Mobile device - iOS or Android
** You can use other bulbs or models. You might need to update the code to call the API.
To configure your chirp app, navigate to the applications page and select a protocol. Copy and paste the key, secret and config string into your app.
Please follow the instruction in meethue developers page
- Navigate the chirp_flutter_light directory and run "flutter run" or use VSCode to run the flutter app.
cd chirp_flutter_light flutter run ios
- To configure the SDK you will need to copy your app_key, app_secret, and app_config from the applications page and set this in main.dart file
String _appKey = '<Chirp_App_Key>'; String _appSecret = '<Chirp_App_Secret>'; String _appConfig = '<Chirp_App_Config>';
-
To configure the pythone SDK you will need to copy your app_key, app_secret, and app_config from the applications page and paste into your ~/.chirprc file.
[default] app_key = xXxXXxxxXXXxxXXXxXxXXxXxx app_secret = xxXxXXXxXxxXXXxXXXXxXxXxxxXxxxXXxXxXxxxXXxXxXXxXxX app_config = XxXXXXxXxXxxxXxxxXXxXxXxxxXXxXxXXxXxXxxXxXXXxXxxXXXxXXXXxXxXxxxXxxxXXxXxXxxxXXxXxXXxXxX
-
Navigate to the python directory and install pip requirements
cd python pip3 install -r requirements.txt
-
Setup your Philips Hue Bridge API IP Address, Username and lightId of your bulb to control, in index.py
ipAddress = "<IP_ADDRESS>" userId = "<HUE_USERID>" lightId = <LIGHTID>
-
Run the python program to listen the audio
python3 index.py
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (git checkout -b feature/AmazingFeature)
- Commit your Changes (git commit -m 'Add some AmazingFeature)
- Push to the Branch (git push origin feature/AmazingFeature)
- Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.