
IOT
A-level
这个作者很懒,什么都没留下…
展开
-
Domoticz添加实时天气信息显示
Domoticz面板中可以添加JSON格式的信息。这里以添加彩云天气API信息为例。 基本步骤: 添加HTTP/HTTPS poller虚拟硬件 添加虚拟设备 编写lua脚本 脚本放在制定目录下 添加HTTP/HTTPS poller 类型硬件 URL—— 是彩云天气API的地址,实际上就是JSON格式数据。 命令 ——tianqi_paraser.lua 是我们后面需要编写的脚...原创 2019-02-14 18:00:15 · 2909 阅读 · 4 评论 -
在Raspberry Pi树莓派 上安装mosquitto mqtt 服务器
转载:https://www.switchdoc.com/2018/02/tutorial-installing-and-testing-mosquitto-mqtt-on-raspberry-pi/ https://learn.adafruit.com/diy-esp8266-home-security-with-lua-and-mqtt/configuring-mqtt-on-the-ras...转载 2019-04-05 07:34:54 · 2381 阅读 · 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 评论 -
Arduino Esp8266一些有用的库
WebSocket MQTT COAP https://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 评论 -
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 评论 -
Alios Things SDK ESP32 GPIO管脚定义
platform\mcu\esp32\bsp\include\driver\include\driver\gpio.h #ifndef _DRIVER_GPIO_H_ #define _DRIVER_GPIO_H_ #include "esp_err.h" #include <esp_types.h> #include "soc/gpio_reg.h" #include "s...原创 2019-02-12 09:27:26 · 1714 阅读 · 0 评论 -
Arduino ESP32 Example
http://www.iotsharing.com/2017/07/how-to-use-ble-in-arduino-esp32.html http://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 评论 -
如何降低ESP8266的能耗
看到一篇好文,分享一下 Reducing the Power Consumption of Your ESP8266 We 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 评论 -
HiveMQ CE和hivemq mqtt web client
MQTT broker 用过几个,如果是自己测试做实验,比较喜欢HiveMQ CE和hivemq mqtt web client HiveMQ CE是一个MQTT服务器,有windows Linux多个版本支持websocket; hivemq mqtt web client是一个基于websocket的web客户端连接HiveMQ CE非常方便。 HiveMQ CEis a Java-b...转载 2019-07-26 14:07:03 · 3261 阅读 · 0 评论