add TRACE doc 英文版

This commit is contained in:
LiHuashen
2019-02-18 17:22:19 +08:00
parent c78e182b56
commit df7b11f14b
11 changed files with 121 additions and 24 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 KiB

After

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

After

Width:  |  Height:  |  Size: 202 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 KiB

After

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 138 KiB

-1
View File
@@ -54,7 +54,6 @@ Because the module can generate WIFI hotspot AP, So you can use your mobile phon
## Include
- 1x M5 Camera
- 1x Type-C USB Cable
## PinMap
+90
View File
@@ -0,0 +1,90 @@
# TRACE - Line follower Unit {docsify-ignore-all}
<img src="assets/img/product_pics/unit/unit_trace_01.png" width="30%" height="30%"><img src="assets/img/product_pics/unit/unit_trace_02.png" width="30%" height="30%">
***
:memo:**[Description](#Description)**&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:octocat:**[Example](#Example)**&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:electric_plug:**[Schematic](#Schematic)**&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;🛒**[Purchase](https://www.aliexpress.com/store/product/M5Stack-New-TRACE-Board-for-Lidar-Bot-Mini-Car-M5BALA-Balance-Car-with-MEGA328-4-IR/3226069_32974626338.html?spm=a2g1y.12024536.productList_5885013.subject_0)**&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:clapper:**[Related Video](#Related-Video)**
## Description
**<mark>TRACE</mark>** is a line-follower unit with built-in 4 pairs of photoelectric tube and MEGA328 chip.
TRACE Unit also communicates with the master through the IIC ( the IIC address is 0x5A). When connected to the M5Core, it is connected to the GROVE A.
<img src="assets/img/product_pics/unit/unit_trace_03.png" width="60%" height="60%">
## Feature
- operation range: The reflecting surface is less than 11mm from the photoelectric surface
- GROVE interface, support [UiFlow](http://flow.m5stack.com) and [Arduino](http://www.arduino.cc)
## Related Link
- **[Offical Video](https://www.youtube.com/channel/UCozgFVglWYQXbvTmGyS739w)**
- **[Forum](http://forum.m5stack.com/)**
- **[The Firmware of inside MEGA328](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/TRACE/firmware_328p)**
## Example
### 1. Arduino IDE
*The below code is incomplete(just for usage). If you want the complete code, please click [here](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/TRACE/Arduino)。*
```arduino
#include <M5Stack.h>
#include "Wire.h"
#define TRACE_ADDR 0x5a
// declaration
#define VALUE_SPLIT
uint8_t value;
int SensorArray[4] = {0};
// initialization
m5.begin();
Serial.begin(115200);
Wire.begin();
// read data
Wire.beginTransmission(TRACE_ADDR);
Wire.write(0x00);
Wire.endTransmission();
Wire.requestFrom(TRACE_ADDR,1);
while(Wire.available()){
value = Wire.read();
}
SensorArray[3] = (value&0x08)>>3;
SensorArray[2] = (value&0x04)>>2;
SensorArray[1] = (value&0x02)>>1;
SensorArray[0] = (value&0x01)>>0;
```
<img src="assets/img/product_pics/unit/unit_trace_04.png">
### 2. UIFlow
*If you want the complete code, please click [here](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/TRACE/UIFlow)。*
<img src="assets/img/product_pics/unit/unit_example/TRACE/example_unit_trace_01.png">
## Schematic
<img src="assets/img/product_pics/unit/trace_sch.png">
### PinMap
<table>
<tr><td>M5Core(GROVE A)</td><td>GPIO22</td><td>GPIO21</td><td>5V</td><td>GND</td></tr>
<tr><td>TRACE Unit</td><td>SCL</td><td>SDA</td><td>5V</td><td>GND</td></tr>
</table>
## Related Video
**TRACE Case**
<iframe width="560" height="315" src="https://www.youtube.com/embed/vwzqqE8cL4I" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-1
View File
@@ -40,7 +40,6 @@
## パッケージ内容
- 1x ESP32Cam
- 1x USB Type-C ケーブル
## 関連リンク
@@ -1,5 +1,4 @@
{docsify-ignore-all}
# Core 上手指南(macOS, Arudino)
# Core 上手指南(macOS, Arudino) {docsify-ignore-all}
<!-- :clapper: **[视频教程](#视频教程)**&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:memo: **[文本教程](#文本教程)** -->
-1
View File
@@ -53,7 +53,6 @@
## 包含
- 1x ESP32Cam Unit
- 1x Type-C USB 线
## 管脚映射
+30 -19
View File
@@ -1,6 +1,6 @@
# TRACE - 巡线 Unit {docsify-ignore-all}
<img src="assets/img/product_pics/unit/unit_trace_01.png" width="30%" height="30%">
<img src="assets/img/product_pics/unit/unit_trace_01.png" width="30%" height="30%"><img src="assets/img/product_pics/unit/unit_trace_02.png" width="30%" height="30%">
***
@@ -12,14 +12,14 @@
TRACE Unit 同样也是通过 IIC 与主控通信,其I2C地址是0x5A。与 M5Core 相连时,接在 GROVE A 口。
<img src="assets/img/product_pics/unit/unit_trace_03.png" width="30%" height="30%">
<img src="assets/img/product_pics/unit/unit_trace_03.png" width="60%" height="60%">
## 特性
- 工作范围:反射面距离光电对管面小于 11mm
- GROVE接口,支持[UiFlow](http://flow.m5stack.com)编程,[Arduino](http://www.arduino.cc)编程
- GROVE接口,支持[UiFlow](http://flow.m5stack.com)编程,[Arduino](http://www.arduino.cc)编程
## 相关链接
@@ -27,7 +27,7 @@ TRACE Unit 同样也是通过 IIC 与主控通信,其I2C地址是0x5A。与 M5
- **[官方论坛](http://forum.m5stack.com/)**
<!-- - **[模块内MEGA328固件](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/Makey_NewVersion/firmware_328p)** -->
- **[模块内MEGA328固件](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/TRACE/firmware_328p)**
## 例程
@@ -39,43 +39,54 @@ TRACE Unit 同样也是通过 IIC 与主控通信,其I2C地址是0x5A。与 M5
#include <M5Stack.h>
#include "Wire.h"
#define JOY_ADDR 0x52
#define TRACE_ADDR 0x5a
// declaration
#define VALUE_SPLIT
uint8_t value;
int sensorValue[4] = {0};
int SensorArray[4] = {0};
// initialization
M5.begin();
M5.Lcd.clear();
dacWrite(25, 0);//disable the speak noise
Wire.begin(21, 22, 400000);
m5.begin();
Serial.begin(115200);
Wire.begin();
// read data
Wire.requestFrom(JOY_ADDR, 3);
if (Wire.available()) {
x_data = Wire.read();// X(range: 10~250)
y_data = Wire.read();// Y(range: 10~250)
button_data = Wire.read();// Z(0: released 1: pressed)
sprintf(data, "x:%d y:%d button:%d\n", x_data, y_data, button_data);
Wire.beginTransmission(TRACE_ADDR);
Wire.write(0x00);
Wire.endTransmission();
Wire.requestFrom(TRACE_ADDR,1);
while(Wire.available()){
value = Wire.read();
}
SensorArray[3] = (value&0x08)>>3;
SensorArray[2] = (value&0x04)>>2;
SensorArray[1] = (value&0x02)>>1;
SensorArray[0] = (value&0x01)>>0;
```
<img src="assets/img/product_pics/unit/unit_trace_04.png">
### 2. UIFlow
*具体例程请点击[这里](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Unit/TRACE/UIFlow)。*
<img src="assets/img/product_pics/unit/unit_example/TRACE/example_unit_trace_01.png">
<!-- ## 原理图
## 原理图
<img src="assets/img/product_pics/unit/trace_sch.png"> -->
<img src="assets/img/product_pics/unit/trace_sch.png">
### 管脚映射
<table>
<tr><td>M5Core(GROVE接口A)</td><td>GPIO22</td><td>GPIO21</td><td>5V</td><td>GND</td></tr>
<tr><td>TRACE Unit</td><td>SCL</td><td>SDA</td><td>5V</td><td>GND</td></tr>
</table>
</table>
## 相关视频
**TRACE 的演示**
<iframe height=498 width=510 src='https://player.youku.com/embed/XNDAyODEzMDQ2MA==' frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>