arduino
arduino 模块开发
Yweir
这个作者很懒,什么都没留下…
展开
-
arduino esp32搭建蓝牙服务
添加arduino esp32 开发板未添加开发板的可看=>添加esp32开发板蓝牙服务搭建代码示例/* Based on Neil Kolban example for IDF: https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleWrite.cpp Ported to Arduino ESP32 by Evandro Copercini*/#inc原创 2021-04-03 15:57:06 · 1217 阅读 · 2 评论 -
arduino esp32 通过wifi连接mqtt
使用模块eps32 支持arduino开发,基于eps32-sarduino导入eps32开发插件添加开发板管理地址 https://github.com/espressif/arduino-esp32/releases/download/1.0.4/package_esp32_index.json添加开发板在开发管理地址添加好后,打开开发板管理安装开发板esp32开发板安装好之后,选择开发板导入依赖库#include <WiFi.h>#include <P原创 2021-04-03 15:42:57 · 4652 阅读 · 2 评论 -
esp8226-01s 控制继电器 连接小爱同学 实现远程开关点灯
Arduino UNO上,提供了8(RX)、9(TX)#include <WiFiEsp.h>#include <SoftwareSerial.h>SoftwareSerial mySerial1(8, 9);// RX, TXchar ssid[] = "wifi"; // your network SSID (name)char pass[] = "123456"; // your network passwordint stat原创 2020-09-25 12:24:26 · 8337 阅读 · 22 评论