wifiduino上传问题-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1989|回复: 2

wifiduino上传问题

[复制链接]
发表于 2019-7-25 19:14 | 显示全部楼层 |阅读模式
本帖最后由 oscarangustin 于 2019-7-25 19:22 编辑

本小白刚刚入手wifiduino,在上传程序时出现了如图所示的现象,设备始终显示为离线,但在运行例程时成功连接,特向各位大佬求助

#define BLINKER_WIFI
#include <Blinker.h>
char auth[] = "04acdfe8ca0f";
char ssid[] = "ChinaNet-E4CD";
char pswd[] = "zzmlxhdsbz";
BlinkerNumber SITTINGTIME("sitting");
int sensor=7;
float t=0;
static float t1;
float time_read=0;
void heartbeat()
{
  SITTINGTIME.print(time_read);
}
void setup()
{
  Serial.begin(115200);
  pinMode(sensor,INPUT);
  BLINKER_DEBUG.stream(Serial);
  BLINKER_DEBUG.debugAll();
  Blinker.begin(auth,ssid,pswd);
  Blinker.attachHeartbeat(heartbeat);
}
void loop()
{
    Blinker.run();
  int distance=digitalRead(sensor);
  if(distance==0)
  {
    t++;
    t1=t;
    BLINKER_LOG("time ", t, " s");
   time_read = t;
  }
  else
  {
    t=t1;
   BLINKER_LOG("time ", t, " s");
   time_read = t;
  }
     Blinker.delay(1000);
}

DTQM03M}6@W88[MFVPV7K}2.png
发表于 2019-7-25 19:43 | 显示全部楼层
gpio7不能用,你想用的可能是D7
如果对开发板不了解,务必先阅读文档,再使用开发板
https://wifiduino.com/
 楼主| 发表于 2019-7-26 08:55 | 显示全部楼层
谢谢大佬的回答,可是我在上传的时候也试过什么都不连,可是还是同样的结果
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 04:35 , Processed in 0.146206 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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