diff --git a/_config.yml b/_config.yml index 838cfcd..a80a2d8 100644 --- a/_config.yml +++ b/_config.yml @@ -15,11 +15,11 @@ timezone: 'Asia/Shanghai' ## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/' url: 'https://www.eee.dog' root: / -permalink: :category/:title/ +permalink: :category/:title.html permalink_defaults: pretty_urls: trailing_index: false # Set to false to remove trailing 'index.html' from permalinks - trailing_html: false # Set to false to remove trailing '.html' from permalinks + trailing_html: true # Set to false to remove trailing '.html' from permalinks # Directory source_dir: source diff --git a/source/_drafts/life-guide.md b/source/_drafts/life-guide.md new file mode 100644 index 0000000..c017ae8 --- /dev/null +++ b/source/_drafts/life-guide.md @@ -0,0 +1,13 @@ +--- +title: life-guide +date: 2020-06-29 11:30:25 +categories: +- life +tags: +--- + +从各种来源搜集的适合做life guide的语录。持续更新中~ + + + +1. diff --git a/source/_posts/build-236-iot-platform-on-wifiduino.md b/source/_posts/build-236-iot-platform-on-wifiduino.md index 5d2abcf..27d2d8e 100644 --- a/source/_posts/build-236-iot-platform-on-wifiduino.md +++ b/source/_posts/build-236-iot-platform-on-wifiduino.md @@ -65,6 +65,7 @@ tags: ## 2019.6.12更新 稳定运行611天18小时32分钟,正式退役! +![236-iot](https://api.yimian.xyz/img/?path=imgbed/img_39e7f50_3968x1984_8_null_normal.jpeg) ------------- 已完结 diff --git a/source/_posts/smart-home.md b/source/_posts/smart-home.md index 0309e2b..9bf6d38 100644 --- a/source/_posts/smart-home.md +++ b/source/_posts/smart-home.md @@ -39,7 +39,7 @@ Arduino UNO的缺陷主要是价格高,但是为保障长期稳定运行,这 ### 1.4 智能音箱选材 -智能音箱作为此物联网系统人机交互的最主要界面,发挥着举足轻重的作用。经研究,我使用天猫精灵方糖R作为家用智能音箱。一方面,天猫精灵的性价比摆在那里,非常便宜。第二,与小米开发小爱同学不同,阿里开发天猫精灵的目的是提供平台,它运行开发者以各种形式接入其网络,这一点对我至关重要。 +智能音箱作为此物联网系统人机交互的最主要界面,发挥着举足轻重的作用。经研究,我使用天猫精灵方糖R作为家用智能音箱。一方面,天猫精灵的性价比摆在那里,非常便宜。第二,与小米开发小爱同学不同,阿里开发天猫精灵的目的是提供平台,它允许开发者以各种形式接入其网络,这一点对我至关重要。 ### 1.5 灯拨动开关 @@ -51,7 +51,7 @@ Arduino UNO的缺陷主要是价格高,但是为保障长期稳定运行,这 ![网络拓扑图](https://api.yimian.xyz/img/?path=imgbed/img_43b85bd4_1096x660_8_null_normal.png) -采用WiFi+LoRa两种通信模式。在需要高速高质量通信的场景,如天猫精灵,手机,笔记本,使用WiFi作为通信手段。在WiFi信号不稳定的地方,使用LoRa进行通信。 +采用WiFi+LoRa两种通信模式。在需要高速高质量通信的场景,如天猫精灵,手机,笔记本,使用WiFi作为通信手段。在WiFi信号不稳定的地方,使用LoRa进行通信。使用MQTT为应用层协议。 ## 3 主控系统设计 @@ -69,3 +69,10 @@ dns.yimian.xyz提供dns解析服务。 通过挂载从老电脑上拆卸的闲置500G机械硬盘到老IBM服务器,实现存储系统的搭建。 对局域网内,由于家里都是win系统,使用smb作为共享协议实现文件传输,支持局域网内挂载。速度稳定,全网读写10MB/s左右。对外网访问,通过http,frp反代实现,但速度较慢。 + +------------------------ +2020.6 更新 + +## RNN实现对灯控制 + +基于先前积累的人体传感器数据,通过LSTM模型,使用keras训练神经网络,实现对开灯状态的预测。 \ No newline at end of file diff --git a/source/_posts/wiot.md b/source/_posts/wiot.md index 8e1d80d..5d7dff2 100644 --- a/source/_posts/wiot.md +++ b/source/_posts/wiot.md @@ -13,13 +13,34 @@ tags: -[scode type="green"]正式开发文档见[**这里**](https://wiot.eee.dog)[/scode] +> 正式开发文档见[**这里**](https://wiot.yimian.xyz) ## wIoT for NodeJS 适用于NodeJS的wIoT服务器控制组件,轻松物联 +# 项目简介 + +## 立项初衷 +本项目旨在帮助不熟悉固件编程的网络开发者实现出自己的物联网应用。您仅需要一台网络内部的服务器(比如树莓派),以及若干个支持可联网(通过串口,WiFi,LoRa,蓝牙,Zigbee等)的单片机,即可轻松创建并管理属于您自己的物联网集群。 + +## 支持功能 + - ota (隔空自动更新固件) + - 自动扫描网络内单片机 + - 通过wifi连接设置 + - 使用socket/HTTP通信 + +## todo List + - 支持python界面 + - 开发web面板,图像化管理 + - 支持更多单片机,比如esp8266等 + - 开发nodeJS wiot-cli 命令行程序 + - 支持nodeJS自动烧写固件,并自动配置(很重要) + + +# 使用方法 + ## 先觉条件 - - 拥有烧录好[wIoT固件](https://wiot.yimian.xyz/ota/get.php)的**D1 MINI**单片机 + - 拥有烧录好[wIoT固件](https://wiot-ota.yimian.xyz/get.php)的**D1 MINI**单片机 - 一台或多台无线WiFi路由器2.4G/5G - 局域网内拥有一台装有**NodeJS**的服务器或电脑 (NodeJS装法非常简单, 请自行Google或百度) - 配置好**npm**