为什么我使用点灯的Blinker.second()获取时间一直失败-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 495|回复: 1

[已解答] 为什么我使用点灯的Blinker.second()获取时间一直失败

[复制链接]
发表于 2022-6-30 16:40 | 显示全部楼层 |阅读模式



#define BLINKER_WIFI

#include <Blinker.h>


char auth[] = "XXX";
char ssid[] = "XXX";
char pswd[] = "XX";

void dataRead(const String & data)
{
    BLINKER_LOG("Blinker readString: ", data);

    Blinker.vibrate();
   
    uint32_t BlinkerTime = millis();
    Blinker.print(BlinkerTime);
    Blinker.print("millis", BlinkerTime);
}

void setup() {
  Serial.begin(115200);
    BLINKER_DEBUG.stream(Serial);
    BLINKER_DEBUG.debugAll();
    Blinker.setTimezone(-8.0);
    Blinker.begin(auth, ssid, pswd);
    Blinker.attachData(dataRead);
//    Blinker.attachHeartbeat(heartbeat);
}

void loop() {
  Blinker.run();
  int8_t hour1 = Blinker.hour();
  BLINKER_LOG("hour1:",hour1);
    int8_t minute1 = Blinker.minute();
  BLINKER_LOG("minute:",minute1);
    int8_t day1 = Blinker.mday();
  BLINKER_LOG("day:",day1);
  uint32 times = Blinker.time();
   BLINKER_LOG("time:",times);
  Blinker.delay(2000);
}

发表于 2022-7-1 09:01 | 显示全部楼层
请确保package和lib版本均为最新,并测试例程,如有问题,请提供调试信息。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 08:38 , Processed in 0.072756 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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