OK, I figured that out… mostly… the log=print
causes compiling error with Python 2.7, so more investigation required.
blynk = BlynkLib.Blynk(BLYNK_AUTH,
server='10.10.3.13', # set server address
port=8080, # set server port
heartbeat=30, # set heartbeat to 30 secs
#log=print # use print function for debug logging
)
In fact, it seems lots of rethinking is required as there is no longer tasks? and needing the while true:
for blynk.run()
and a few other issues with my existing sketches.
Time to relearn Blynk Python by digging into the new examples Gave it a star on github (not sure why I hadn’t before)