Skip to content

codemee/blynk-library-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blynk-library-python

Usage

import BlynkLib import time BLYNK_AUTH = 'YourAuthToken' # Initialize Blynk blynk = BlynkLib.Blynk(BLYNK_AUTH) # Register Virtual Pins @blynk.VIRTUAL_WRITE(1) def my_write_handler(value): print('Current V1 value: {}'.format(value)) @blynk.VIRTUAL_READ(2) def my_read_handler(): # this widget will show some time in seconds.. blynk.virtual_write(2, time.ticks_ms() // 1000) # Start Blynk (this call should never return) blynk.run()

Notes

For some devices (like PyCom WiPy) you need to setup internet connection first:

from network import WLAN WIFI_SSID = 'YourWiFiNetwork' WIFI_AUTH = (WLAN.WPA2, 'YourWiFiPassword') wlan = WLAN(mode=WLAN.STA) wlan.connect(WIFI_SSID, auth=WIFI_AUTH, timeout=5000) print(wlan.ifconfig())

About

Blynk library for Python. Works with Python 2, Python 3, MicroPython.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%