这块板子怎么用-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 3648|回复: 6

[未解决] 这块板子怎么用

[复制链接]
发表于 2021-4-24 10:49 | 显示全部楼层 |阅读模式
淘宝资料也看过了,资料:https://pan.baidu.com/s/1qY5p6fq
上传不了:
  1. esptool.py v2.8
  2. Serial port COM3
  3. Connecting....
  4. Chip is ESP8266EX
  5. Features: WiFi
  6. Crystal is 26MHz
  7. MAC: e8:db:84:e1:13:da
  8. Uploading stub...
  9. Running stub...
  10. Stub running...
  11. Changing baud rate to 460800
  12. Changed.
  13. Configuring flash size...
  14. Auto-detected Flash size: 4MB
  15. Compressed 542240 bytes to 386117...
  16. Wrote 542240 bytes (386117 compressed) at 0x00000000 in 8.7 seconds (effective 498.7 kbit/s)...
  17. Hash of data verified.

  18. Leaving...
  19. Hard resetting via RTS pin...
复制代码


微信图片_20210424104910.jpg
发表于 2021-4-24 12:35 | 显示全部楼层
弄啥嘞,明明写着上传成功

点评

谢谢啦~  发表于 2021-4-25 12:44
 楼主| 发表于 2021-4-25 12:44 | 显示全部楼层
vincesketch 发表于 2021-4-24 12:35
弄啥嘞,明明写着上传成功

刚买,不会使用....
 楼主| 发表于 2021-4-25 13:37 | 显示全部楼层
vincesketch 发表于 2021-4-24 12:35
弄啥嘞,明明写着上传成功

不对啊,那为啥没热点显示呢?
  1. /* *****************************************************************
  2. *
  3. * Download latest Blinker library here:
  4. * https://github.com/blinker-iot/blinker-library/archive/master.zip
  5. *
  6. *
  7. * Blinker is a cross-hardware, cross-platform solution for the IoT.
  8. * It provides APP, device and server support,
  9. * and uses public cloud services for data transmission and storage.
  10. * It can be used in smart home, data monitoring and other fields
  11. * to help users build Internet of Things projects better and faster.
  12. *
  13. * Make sure installed 2.7.4 or later ESP8266/Arduino package,
  14. * if use ESP8266 with Blinker.
  15. * https://github.com/esp8266/Arduino/releases
  16. *
  17. * Make sure installed 1.0.5 or later ESP32/Arduino package,
  18. * if use ESP32 with Blinker.
  19. * https://github.com/espressif/arduino-esp32/releases
  20. *
  21. * Docs: https://diandeng.tech/doc
  22. *      
  23. *
  24. * *****************************************************************
  25. *
  26. * Blinker 库下载地址:
  27. * https://github.com/blinker-iot/blinker-library/archive/master.zip
  28. *
  29. * Blinker 是一套跨硬件、跨平台的物联网解决方案,提供APP端、设备端、
  30. * 服务器端支持,使用公有云服务进行数据传输存储。可用于智能家居、
  31. * 数据监测等领域,可以帮助用户更好更快地搭建物联网项目。
  32. *
  33. * 如果使用 ESP8266 接入 Blinker,
  34. * 请确保安装了 2.7.4 或更新的 ESP8266/Arduino 支持包。
  35. * https://github.com/esp8266/Arduino/releases
  36. *
  37. * 如果使用 ESP32 接入 Blinker,
  38. * 请确保安装了 1.0.5 或更新的 ESP32/Arduino 支持包。
  39. * https://github.com/espressif/arduino-esp32/releases
  40. *
  41. * 文档: https://diandeng.tech/doc
  42. *      
  43. *
  44. * *****************************************************************/

  45. #define BLINKER_WIFI

  46. #include <Blinker.h>

  47. char auth[] = "24e3a15e8256";
  48. char ssid[] = "YCAP";
  49. char pswd[] = "12345678";

  50. // 新建组件对象
  51. BlinkerButton Button1("btn-abc");
  52. BlinkerNumber Number1("num-abc");

  53. int counter = 0;

  54. // 按下按键即会执行该函数
  55. void button1_callback(const String & state)
  56. {
  57.     BLINKER_LOG("get button state: ", state);
  58.     digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN));
  59. }

  60. // 如果未绑定的组件被触发,则会执行其中内容
  61. void dataRead(const String & data)
  62. {
  63.     BLINKER_LOG("Blinker readString: ", data);
  64.     counter++;
  65.     Number1.print(counter);
  66. }

  67. void setup()
  68. {
  69.     // 初始化串口
  70.     Serial.begin(115200);
  71.     BLINKER_DEBUG.stream(Serial);
  72.     BLINKER_DEBUG.debugAll();
  73.    
  74.     // 初始化有LED的IO
  75.     pinMode(LED_BUILTIN, OUTPUT);
  76.     digitalWrite(LED_BUILTIN, HIGH);
  77.     // 初始化blinker
  78.     Blinker.begin(auth, ssid, pswd);
  79.     Blinker.attachData(dataRead);

  80.     Button1.attach(button1_callback);
  81. }

  82. void loop() {
  83.     Blinker.run();
  84. }
复制代码
发表于 2021-4-27 15:52 | 显示全部楼层
亏啊不 发表于 2021-4-25 13:37
不对啊,那为啥没热点显示呢?

这个程序是连别的WiFi,不是自己当热点吧
发表于 2021-4-27 17:27 | 显示全部楼层
如果需要AP配网的  参考这个:https://www.diandeng.tech/doc/dev-tool
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-29 07:47 , Processed in 0.207032 second(s), 20 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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