-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_uart .html
168 lines (163 loc) · 6.53 KB
/
sample_uart .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
<!DOCTYPE html>
<html lang="ja">
<head>
<title>UARTサンプル - RBoardDocument</title>
<link rel="shortcut icon" href="./image/bug.ico">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-176702602-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-176702602-1');
</script>
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/styles/a11y-dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/highlight.min.js"></script>
<script type="text/javascript" src="./style.js"></script>
<link href="https://use.fontawesome.com/releases/v5.11.0/css/all.css" rel="stylesheet">
</head>
<body>
<div id="header"><h1> UARTサンプル </h1></div>
<div id="main">
UARTのGROVEポートはtxピンとrxピンが逆であることが今更判明。<br>
UARTのGROVEモジュールを使用する際には<a href="https://www.switch-science.com/catalog/6245/">スイッチサイエンス</a>や<a href="https://www.marutsu.co.jp/pc/i/829489/">マルツ</a>にて販売しているジャンパ線を使用して、<br>
黒:GND、赤:3.3V、白:Pin14、黄:Pin13へ接続してください。<br><br>
<h3>モジュール初期設定</h3>
シリアルコンソール経由(PC->RBoard->モジュール)でモジュールの初期設定を行う際に使用するRBoardのプログラムです。<br>
devのbaudはモジュールの初期値を指定して下さい。<br>
例:AMW037,BGX13Pなどは115200<br>
<pre><code class="ruby">
usb = UART.new( 1, baud:19200 )
dev = UART.new( 2, baud:19200 )
while true
# PC -> RBoard -> モジュール
if(usb.can_read_line())
dev.write(usb.gets())
end
# モジュール -> RBoard -> PC
if(dev.can_read_line())
usb.write(dev.gets())
# usb.write("> ")
end
end
</code></pre>
<h3>im920s</h3>
http://akizukidenshi.com/catalog/g/gM-13566/
<h4>文字列送信</h4>
<pre><code class="ruby">
im = UART.new(19200)
while true
im.puts("TXDA " + (23).to_s + "\r\n")
sleep(5)
end
</code></pre>
<h4>文字列受信</h4>
<pre><code class="ruby">
im = UART.new(19200)
while true
puts(im.gets())
sleep(5)
end
</code></pre>
<hr id="first_boader">
<h3>Bluetooth</h3>
https://www.switch-science.com/catalog/5794/<br>
setコマンドにて値の設定、getコマンドにて設定値の確認を行うことができます。<br>
コマンド :https://docs.silabs.com/gecko-os/1/bgx/latest/commands<br>
パラメータ:https://docs.silabs.com/gecko-os/1/bgx/latest/variables<br>
例:ボーレート設定コマンド<br>
set ua b 19200<br>
Bluetooth5に対応したAndroidスマホを準備します。<br>
スマホアプリ「Serial Bluethooth Terminal」をインストール。<br>
モジュールの電源を入れる。(RBoardに接続するなど)<br>
スマホの設定→機器接続→新しい機器とペア設定する からモジュールを登録。<br>
「Serial Bluethooth Terminal」を起動し、Devices→Bluetooth LE→モジュールの項目を長押しします。<br>
Edit→Custam→3つのUUIDをそれぞれ選択。<br>
右上の✓を押したら接続できるはずです。<br>
<pre><code class="ruby">
bluetooth = UART.new(19200)
while true
bluetooth.puts("aaaa\r\n")
sleep(5)
end
</code></pre>
<h3>wifi</h3>
https://www.switch-science.com/catalog/5795/<br>
<pre><code class="ruby">
cmd = "hge https://script.google.com/macros/s/xxxxxxxxxxxxxxxxxxx/exec?data1="
wifi = UART.new(19200)
wifi.puts("\r\n")
sleep(5)
while true
wifi.puts(cmd + (1.to_s) + "\r\n")
sleep(10)
wifi.puts("stream_close 0\r\n")
sleep(10)
end
</code></pre>
</div>
<div id="submenu">
<div id="submenu_header">もくじ</div>
<ul id="submenu_body">
<i class="fas fa-home"></i><a href="./index.html">HOME</a>
<li><details>
<summary>プログラム書き込み</summary>
<ul id="subuul">
<li><a href="./ide_install.html">mruby/c IDEインストール</a></li>
<li><a href="./write_program.html">PG書き込み</a></li>
</ul>
</details></li>
<li><details>
<summary>ファームウェアアップデート</summary>
<ul id="subuul">
<li><a href="./update.html">アップデート手順</a></li>
</ul>
</details></li>
<li><details>
<summary>ボード一覧</summary>
<ul id="subuul">
<li><a href="./board_list.html">ボード一覧</a></li>
</ul>
</details></li>
<li><details>
<summary>RBoardにおける各クラス</summary>
<ul id="subuul">
<li><a href="./class.html">各クラス</a></li>
<li><a href="./mrubyc_class.html">mruby/c IO 各クラス</a></li>
</ul>
</details></li>
<li><details>
<summary>サンプルプログラム</summary>
<ul id="subuul">
<li><a href="./adc.html">ADCサンプル</a></li>
<li><a href="./i2c.html">I2Cサンプル</a></li>
<li><a href="./pwm.html">PWMサンプル</a></li>
<li><a href="./uart.html">UARTサンプル</a></li>
<li><a href="./etc.html">その他サンプル</a></li>
</ul>
</details></li>
<li><details>
<summary>その他</summary>
<ul id="subuul">
<li><a href="./sensor_module.html">対応センサーモジュール</a></li>
<li><a href="./console.html">ターミナルソフトの設定</a></li>
</ul>
</details></li>
<li><details>
<summary>チュートリアル</summary>
<ol id="subuol">
<li><a href="./tutorial_mrubyc.html">mruby/cとは?</a></li>
<li><a href="./tutorial_led.html">LEDを制御する</a></li>
<li><a href="./tutorial_rgb_led.html">フルカラーLED</a></li>
<li><a href="./tutorial_reed_switch.html">ドア開閉センサ</a></li>
<li><a href="./tutorial_buzzer.html">圧電ブザー</a></li>
<li><a href="./tutorial_cds.html">光センサ</a></li>
<li><a href="./tutorial_temp.html">温度センサ</a></li>
</ol>
</details></li>
</ul>
<a href="https://www.rubyworld-conf.org/" target="_blank"><img src="rwc2020_banner_a02.png"></a>
</div>
</body>
</html>