官网示例,树莓派3B+连网不成功,ESP32正常-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1766|回复: 5

[过期] 官网示例,树莓派3B+连网不成功,ESP32正常

[复制链接]
发表于 2020-10-10 08:18 | 显示全部楼层 |阅读模式
问题现象:官网示例,树莓派连网不成功,ESP32正常
app版本:2.4.7
android版本:10.0
手机型号:一加6T
库版本:python 2.0  
开发板:树莓派3B+

官网示例代码:
https://diandeng.tech/doc/getting-start-python

from Blinker import *

auth = '*********'

BLINKER_DEBUG.debugAll()

Blinker.mode(BLINKER_WIFI)
Blinker.begin(auth)


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

counter = 0

def button1_callback(state):
    """ """

    BLINKER_LOG('get button state: ', state)

    button1.icon('icon_1')
    button1.color('#FFFFFF')
    button1.text('aabc')
    button1.print(state)

def data_callback(data):
    global counter

    BLINKER_LOG("Blinker readString: ", data)
    counter += 1
    number1.print(counter)

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

if __name__ == '__main__':

    while True:
        Blinker.run()
        result = Blinker.connect()
        print(result)
发表于 2020-10-10 13:34 | 显示全部楼层
树莓派要你自己插个网线或者连wifi
 楼主| 发表于 2020-10-10 16:01 | 显示全部楼层
树莓派已经连上了WIFI的,代码这里不用再配置WIFI了吧?
发表于 2020-10-10 16:56 | 显示全部楼层
aw778 发表于 2020-10-10 16:01
树莓派已经连上了WIFI的,代码这里不用再配置WIFI了吧?

不用,如果还有问题,请描述清楚现象,并提供调试信息
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 14:53 , Processed in 0.087434 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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