Python3接入Blinker失败-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2005|回复: 7

[已解答] Python3接入Blinker失败

[复制链接]
发表于 2020-7-3 12:15 | 显示全部楼层 |阅读模式
运行示例程序,只把auth换成真实的auth,就出现报错。
大佬们看一下这个是啥情况
微信截图_20200703121510.png
微信截图_20200703121451.png
发表于 2020-7-5 14:09 | 显示全部楼层
我解决了,这个库出问题了,0.27版本都不行,安装0.26.3版本就好了
 楼主| 发表于 2020-7-3 12:17 | 显示全部楼层
这里是代码
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-

  3. from Blinker import Blinker, BlinkerButton, BlinkerNumber
  4. from Blinker.BlinkerDebug import *

  5. auth = '填入自己的key'

  6. BLINKER_DEBUG.debugAll()

  7. Blinker.mode("BLINKER_WIFI")
  8. Blinker.begin(auth)

  9. button1 = BlinkerButton("btn-abc")
  10. number1 = BlinkerNumber("num-abc")

  11. counter = 0

  12. def button1_callback(state):
  13.     """ """

  14.     BLINKER_LOG('get button state: ', state)

  15.     button1.icon('icon_1')
  16.     button1.color('#FFFFFF')
  17.     button1.text('Your button name or describe')
  18.     button1.print(state)

  19. def data_callback(data):
  20.     global counter
  21.    
  22.     BLINKER_LOG("Blinker readString: ", data)
  23.     counter += 1
  24.     number1.print(counter)

  25. button1.attach(button1_callback)
  26. Blinker.attachData(data_callback)

  27. if __name__ == '__main__':

  28.     while True:
  29.         Blinker.run()
复制代码
 楼主| 发表于 2020-7-3 12:31 | 显示全部楼层
有大佬能解决一下吗?谢谢!
 楼主| 发表于 2020-7-3 15:48 | 显示全部楼层
顶一下帖,来大佬看一下呗
发表于 2020-7-5 00:32 | 显示全部楼层
同遇到这个问题,求助
 楼主| 发表于 2020-7-5 10:16 | 显示全部楼层
有大佬来看一下吗?顶帖
发表于 2020-7-8 20:14 | 显示全部楼层
zeroconf版本造成的问题,我们已经更新限定了其版本:
https://github.com/blinker-iot/b ... er/requirements.txt
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 16:39 , Processed in 0.172042 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表