
嵌入式开发
A-level
这个作者很懒,什么都没留下…
展开
-
如何降低ESP8266的能耗
看到一篇好文,分享一下Reducing the Power Consumption of Your ESP8266We are now going to see how to lower the power consumption of your ESP8266 WiFi chip. To do that, we are going to use the deep sleep functi...转载 2019-02-15 13:17:02 · 2121 阅读 · 0 评论 -
Arduino ESP32 Example
http://www.iotsharing.com/2017/07/how-to-use-ble-in-arduino-esp32.htmlhttp://www.iotsharing.com/Introduction to ESP32Demo 1: Blinky - a Hello World on Arduino ESP32Demo 2: How to use multiple Seri...转载 2019-02-15 13:59:23 · 1381 阅读 · 1 评论 -
VScode 安装AliOS Studio 提示 'aos'不是内部或外部命令,也不是可运行的程序或批处理文件。
按照 阿里官方教程在Windows 7 环境下安装Alios Studion,顺序步骤均正确,但是编译项目时,始终提示 'aos'不是内部或外部命令,也不是可运行的程序或批处理文件。百度 google查了很多,均没有找到解决办法,后来一想肯定是命令没有添加到环境变量中,于是查找aos命令所在的目录,发现aos.exe安装在 C:\Users\XXX\AppData\Roaming\Pyt...原创 2019-02-07 09:48:22 · 4352 阅读 · 1 评论 -
利用Arduino Esp8266 心知天气API 获取天气预报信息(修改后可以DIY一个小型的桌面气象台)
前期准备:注册心知天气,获取API密钥 https://www.seniverse.com生成API请求地址,北京今天和未来4天的预报请求地址如下:https://api.seniverse.com/v3/weather/daily.json?key=your_API_key&location=beijing&language=zh-Hans&unit=c&...原创 2019-02-11 10:26:29 · 15999 阅读 · 9 评论 -
使用Visual Studio Code开发Arduino相关配置
看了博文1 博文2,知道了VSCode安装Arduino插件可以用来开发Arduino项目,但是实际使用时提示头文件未包含,显然是设置问题。 #include errors detected. Please update your includePath. 百度没有搜索到相关的中文资料,搜到英文的资料,这里记录一下。文件关联设置设置文件 settings.json 添加以下脚本...翻译 2019-02-11 14:50:38 · 7975 阅读 · 2 评论 -
Alios Things Example Helloworld 程序分析
#include <aos/aos.h>static void app_delayed_action(void *arg){ LOG("helloworld %s:%d %s\r\n", __func__, __LINE__, aos_task_name()); aos_post_delayed_action(5000, app_delayed_actio...转载 2019-02-12 10:03:13 · 1212 阅读 · 0 评论 -
Arduino Esp8266一些有用的库
WebSocket MQTT COAPhttps://github.com/morrissinger/ESP8266-Websocket https://github.com/Links2004/arduinoWebSockets https://github.com/ejeklint/arduinoWebSocketserver https://github.com/knollear...原创 2019-02-13 19:50:29 · 5396 阅读 · 0 评论 -
使用 ESP8266Client 和 ESP8266HTTPClient 库创建Esp8266和Domoticz之间的TCP连接
#include <ESP8266WiFi.h>#include <ESP8266HTTPClient.h>#include <DHT.h>#define DHTTYPE DHT11 // DHT type (DHT11, DHT22)#define DHTPIN 5 // Broche du DH...原创 2019-02-14 13:18:55 · 1905 阅读 · 0 评论 -
esp8266启动报错 ets Jan 8 2013,rst cause:2, boot mode:(7,7)
16:49:16.516 -> ets Jan 8 2013,rst cause:2, boot mode:(7,7)16:49:16.516 -> waiting for host16:50:15.396 -> ets Jan 8 2013,rst cause:2, boot mode:(5,7)16:50:15.430 -> waiting for hos...原创 2019-04-12 19:31:35 · 6014 阅读 · 0 评论