Provides API for Blynk Server communication and messaging on IoT/desktop systems with Micropython/Python support.
If you like Blynk - give it a star, or fork it and contribute!
Blynk is the most popular Internet of Things platform for connecting hardware to the cloud, designing apps to control them, and managing your deployed products at scale.
-
With Blynk Library you can connect over 400 hardware models (including ESP8266, ESP32, NodeMCU, all Arduinos, Raspberry Pi, Particle, Texas Instruments, etc.)to the Blynk Cloud. Full list of supported hardware can be found here.
-
With Blynk apps for iOS and Android apps you can easily build graphic interfaces for all of your projects by simply dragging and dropping widgets on your smartphone. It's a purely WYSIWG experience: no coding on iOS or Android required.
-
Hardware can connect to Blynk Cloud (open-source server) over the Internet using hardware connectivity on board, or with the use of various shields (Ethernet, WiFi, GSM, LTE, etc). Blynk Cloud is available for every user of Blynk for free. Direct connection over Bluetooth is also possible.
Blynk App: Google Play | App Store
Optionally you can install Blynk Local Server and run everything locally. However, Blynk Cloud is free for anyone who is using Blynk for personal (non-commercial) use.
-
Check python availability in your system.
python --version
To exclude compatibility issue preferable versions are Python 2.7.9 (or greater) or Python 3.4 (or greater) If python not present you can download and install it from here.
Note! To run python in "sandbox" you can try virtualenv module. Examine this link how to do it.
-
If you’re using preferable versions of python mentioned above, then pip comes installed with Python by default. Check pip availability:
pip --version
-
Install blynk library
sudo pip install blynklib
Library can be installed locally from git sources:
git clone https://github.com/blynkkk/lib-python.git
cd lib-python
pip install --user -e .
# sudo pip install -e . # if installation needed not for current but for all users
You can run unit tests on cPython systems using the command:
python setup.py test
Note! Unit Tests for Micropython ENV currently not implemented
For some platforms it is possible to install Micropython package. This maybe helpful to do preliminary testing and debugging of your code outside real hardware. Supported platforms and related installation docs can be found here.
Library allows to communicate with public or local Blynk Server.
Supports Python2/Python3/Micropython.
HW support of RaspberryPi/ESP32
- connect/disconnect events subscribe
- read/write virtual pins events subscribe
- virtual pin write
- virtual pin sync
- internal app notifications
- email notifications
- twitter notifications
- widget properties modification
Install Blynk python library Download Blynk App (GooglePlay | Apple) and register within it. When you create a new project in Blynk app, you will get Auth Token delivered to your inbox. Use this Auth Token within your python scripts to authenticate your device on public or local
import blynklib
BLYNK_AUTH = '<YourAuthToken>' #insert your Auth Token here
# base lib init
blynk = blynklib.Blynk(BLYNK_AUTH)
# advanced options of lib init
# from __future__ import print_function
# blynk = blynklib.Blynk(BLYNK_AUTH, server='blynk-cloud.com', port=80, heartbeat=10, rcv_buffer=1024, log=print)
# register handler for Virtual Pin V22 reading
# for example when a widget in Blynk App asks Virtual Pin data from server within given interval
@blynk.handle_event('read V22')
def read_virtual_pin_handler(pin):
# user code for this event goes here
# ...
# Example: calculate, get sensor values, current time etc
sensor_data = '<YourCalculatedSensorData>'
critilcal_data_value = '<YourCriticalSensorValue>'
# update current Virtual Pin value on server
blynk.virtual_write(pin, sensor_data)
# or any other pin if needed
# blynk.virtual_write(24, sensor_data)
# actions if calculated value become CRITICAL
if sensor_data >= critilcal_data_value
# set red color for widget that performs periodical virtual pin read operations
blynk.set_property(pin, 'color', '#FF0000')
# send internal notification to Blynk App and notification to defined e-mail
blynk.notify('Warning critical value')
blynk.email(<Your e-mail>, 'Device alarm', 'Critical value!')
# main loop that starts program and handles registered events
while True:
blynk.run()
Examine more_examples to be familiar with basic features usage.
- 01_write_virtual_pin.py (virtual pin write event handling)
- 02_read_virtual_pin.py (App read virtual pin events handling)
- 03_connect_disconnect.py (library connect/disconnect events handling)
- 04_email.py(send email support)
- 05_set_property_notify.py (changing App widget properties and send internal notifications)
- 06_terminal_widget.py (App communication with device through terminal widget)
- 07_tweet_and_logging.py (Tweet messaging and library logging options)
- 01_weather_station_pi3b.py (DHT22; BMP180 sensors usage)
- 01_touch_button.py (TTP223B sensors usage)
This project is released under The MIT License (MIT)