Open ebolisa opened 3 years ago
I am using Blynk.py micro python library currently working on old Blynk cloud , what are the changes in code to connect to new Blynk cloud.
You mean BlynkLib.py? If so, we need to wait for a new version to come up.
Is the micro python or python library for Blynk 2.0 now available.
Any news? @doom369 @vshymanskyy
Providing micropython examples to https://examples.blynk.cc/ could be a nice improvement
Having an easily mip installable version of BlynkLib for MicroPython will be nice also https://github.com/vshymanskyy/blynk-library-python/issues/75
@vshymanskyy
So, what's the trick to get a connection with Python? How to incorporate the device/template variables? Surely, I'm using the wrong library. Thx
import blynklib
BLYNK_AUTH = 'kSG_VfKHJKPA4Gq9*-tGwfwDgg_R' BLYNK_TEMPLATE_ID = 'TMPL9C8i' BLYNK_DEVICE_NAME = 'Demo Python'
blynk = blynklib.Blynk(BLYNK_AUTH)
while True: blynk.run()