-
Notifications
You must be signed in to change notification settings - Fork 2
/
readme.html
173 lines (149 loc) · 4.22 KB
/
readme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<h1 align="center" style="color:black;margin-top:30px;">DashIoT</h1>
<div align="center" style="font-size:40px;">
<figure>
<img src="./__readme/logoSystem.png" height="300px" />
</figure>
</div>
<p align="center">
DashIoT is a dashboard created to send and receive data from analog and digital sensors, in <a
href="https://en.wikipedia.org/wiki/Internet_of_things">IoT</a> context, through
of esp32 board. This is an integrated research project of <a target="_blank"
href="http://ind4fibre.inescbrasil.org.br/">IND4FIBRE</a> through of <a target="_blank"
href="http://inescbrasil.org.br/">INESC P&D BRASIL</a>, developed at <a target="_blank"
href="http://tapioca.eaj.ufrn.br/">TAPIOCA-LAB</a>
of <a target="_blank" href="https://www.ufrn.br/">Federal University of Rio Grande do Norte</a>.
</p>
<hr />
<h2>Interface</h2>
<div align="center" style="padding:10px;">
<table>
<tr>
<td>
<figure>
<img src="./__readme/dashboard1.png" height="300px" />
<figcaption align="center">Dashboard interface</figcaption>
</figure>
</td>
<td>
<figure>
<img src="./__readme/dashboard2.png" height="300px" />
<figcaption align="center">Dashboard interface</figcaption>
</figure>
</td>
</tr>
</table>
</div>
<hr>
<h2>Usage examples</h2>
<div align="center">
<table>
<tr>
<td>
<figure>
<img src="./__readme/analogPlotting.gif" width="500px" />
<figcaption align="center">
Analog reading
</figcaption>
</figure>
</td>
<td>
<figure>
<img src="./__readme/digitalPlotting.gif" width="500px" />
<figcaption align="center">
Digital reading
</figcaption>
</figure>
</td>
</tr>
</table>
</div>
<hr />
<h2> Instrumentation </h2>
<div align="center">
<table>
<tr>
<td>
<figure>
<img src="./__readme/esp32.jpeg" width="300px"><br />
<figcaption align="center">
ESP32
</figcaption>
</figure>
</td>
<td>
<figure>
<img src="./__readme/sensors.jpeg" width="300px"><br />
<figcaption align="center">
Sensors
</figcaption>
</figure>
</td>
</tr>
</table>
</div>
<hr>
<h2>Software Tools</h2>
<ul>
<li>Ruby</li>
<li>Gem arduino_firmata</li>
<li>Gem ruby-mqtt</li>
<li>Eclipse Mosquitto</li>
<li>Node.js</li>
<li>Electron.js</li>
<li>MQTT.js</li>
<li>Chart.js</li>
<li><a href="https://github.com/Gustavo053/Firmata-for-ESP32">Firmata for ESP32</a></li>
</ul>
<hr />
<h2>System Working Diagram</h2>
<div style="padding: 10px" align="center">
<figure>
<img src="./__readme/SystemWorkingDiagram.png" />
<figcaption align="center">Application Execution Flow</figcaption>
</figure>
</div>
<hr />
<h2>How to Use</h2>
<p>Clone this repository:</p>
```sh
$ git clone https://github.com/iberthyallano/Analysis_of_sorting_algorithms.git
```
<p>configure the environment</p>
```sh
$ npm init
```
```sh
$ npm install
```
<p>Configure</p>
```sh
{
"name": "estudo-electron",
"version": "1.0.0",
"description": "Dashboard para controlar o framework arduino_firmata",
"main": "index.js",
"scripts": {
"start": "electron ."
},
"author": "Gustavo",
"license": "MIT",
"devDependencies": {},
"dependencies": {
"chart.js": "^2.9.4",
"electron": "^10.1.5",
"mqtt": "^4.2.4"
}
}
```
<p>Run the project:</p>
```sh
$ npm start
```
<hr />
<h2>How to Contribute</h2>
<ul>
<li>Fork this repository</li>
<li>Create your branch with your feature: `git checkout -b my-feature`</li>
<li>Commit your changes: `git commit -m 'feat: My new feature'`</li>
<li>Push your branch: `git push origin my-feature`</li>
</ul>