From 4ce02ea7f9558952c945504fc43afc476361387b Mon Sep 17 00:00:00 2001
From: LiHuashen <854410664@qq.com>
Date: Wed, 26 Dec 2018 13:39:31 +0800
Subject: [PATCH] ...
---
docs/en/unit/relay.md | 70 ------------------------------------
docs/zh_CN/module/commu.md | 21 ++++++++++-
docs/zh_CN/module/gps.md | 2 +-
docs/zh_CN/module/lorawan.md | 16 +++++----
docs/zh_CN/module/sim800.md | 14 ++++----
5 files changed, 38 insertions(+), 85 deletions(-)
diff --git a/docs/en/unit/relay.md b/docs/en/unit/relay.md
index ac738c80..1e5726f9 100644
--- a/docs/en/unit/relay.md
+++ b/docs/en/unit/relay.md
@@ -1,72 +1,3 @@
-<<<<<<< HEAD
-# Unit RELAY
-
-
-
-***
-
-:memo:**[Description](#Description)** :octocat:**[Example](#Example)** :electric_plug:**[Schematic](#Schematic)** 🛒**[Purchase](https://www.aliexpress.com/store/product/M5Stack-Official-Mini-Relay-Unit-DC-3A-30V-AC-3A-220V-with-Triode-Driven-GROVE-Port/3226069_32922856211.html?spm=a2g1y.12024536.productList_5885013.subject_24)** :clapper:**[Related Video](#Related-Video)**
-
-## Description
-
-The Unit relay is a unit that allows you to control large power loads with a light-current, safe, reliable power control system. the large power loads you can safely control is up to 24 VDC or 120 VAC.
-Only a low electrial level is sent to this unit, the relay will be close and the large power loads you want to control will be working.
-
-
-## Feature
-- A single input
-- Up to 3A @ 24 VDC or 120 VAC
-- GROVE interface, support [UiFlow](http://flow.m5stack.com) and [Arduino](http://www.arduino.cc)
-- Two Lego installation holes
-
-## APPLICATION
-
-- Be perfect for large inductive loads(like DC motors electrocircuit, intelligent interpolation...)
-- Control a standard wall outlet device
-
-## Related Link
-
-- **[Offical Video](https://www.youtube.com/channel/UCozgFVglWYQXbvTmGyS739w)**
-
-- **[Forum](http://forum.m5stack.com/)**
-
-## Example
-
-### 1. Arduino IDE
-
-```arduino
-// RELAY is connected to GROVE B
-pinMode(26, OUTPUT);
-
-digitalWrite(26, 0);//relay opened
-delay(1000);
-digitalWrite(26, 1);//relay closed
-delay(1000);
-```
-
-Click [here](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/RELAY/Arduino) for Specific example.
-
-### 2. UIFlow
-
-
-
-Click [here](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/RELAY/UIFlow) for Specific example.
-
-## Schematic
-
-
-
-### PinMap
-
-
| M5Core(GROVE B) | GPIO36 | GPIO26 | 5V | GND |
| RELAY Unit | RELAY Pin | 5V | GND |

@@ -134,4 +65,3 @@ Click [here](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/
## Related Video
->>>>>>> a510811d6b730443e6048277dfa387894101c476
diff --git a/docs/zh_CN/module/commu.md b/docs/zh_CN/module/commu.md
index 792fb926..bb6dbf55 100644
--- a/docs/zh_CN/module/commu.md
+++ b/docs/zh_CN/module/commu.md
@@ -4,7 +4,9 @@
***
-:memo:**[描述](#描述)** :octocat:**[例程](#例程)** :electric_plug:**[原理图](https://github.com/m5stack/M5-Schematic/blob/master/Modules/module_commu_sch.pdf)** 🛒**[购买链接](https://item.taobao.com/item.htm?spm=a1z10.5-c.w4002-1172588093.64.6c2275f4nUJEfh&id=580999880340)**
+:memo:**[描述](#描述)** :octocat:**[例程](#例程)** 🛒**[购买链接](https://item.taobao.com/item.htm?spm=a1z10.5-c.w4002-1172588093.64.6c2275f4nUJEfh&id=580999880340)**
+
+
## 描述
@@ -46,3 +48,20 @@ COMMU模块中的TTL接口,实际上是串口接口,默认连接的是串口
- **[官方论坛](http://forum.m5stack.com/)**
## 例程
+
+### Arduino IDE
+
+```arduino
+/*
+ Master.ino
+*/
+#include