Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Webカメラサンプルのご紹介 / Web camera sample introduction
Search
d-kato
November 11, 2019
Programming
0
95
Webカメラサンプルのご紹介 / Web camera sample introduction
ET & IoT Technology 2019 ハンズオン資料
d-kato
November 11, 2019
Tweet
Share
More Decks by d-kato
See All by d-kato
GR-MANGO is coming soon!
dkato
0
540
How to use Mbed Studio
dkato
0
150
Mbed忘備録 / Memorandum of Mbed
dkato
0
140
RZ/A2MをMbedで動かしてみた / I tried running RZ_A2M with Mbed
dkato
0
770
WinbondさんのSample ShieldをGR-LYCHEEで動かしてみた / I tried Winbond's Sample Shield with GR-LYCHEE
dkato
0
670
Other Decks in Programming
See All in Programming
go test -json そして testing.T.Attr / Kyoto.go #63
utgwkk
1
190
Introducing ReActionView: A new ActionView-compatible ERB Engine @ Rails World 2025, Amsterdam
marcoroth
0
100
サーバーサイドのビルド時間87倍高速化
plaidtech
PRO
0
680
Google I/O recap web編 大分Web祭り2025
kponda
0
2.9k
Kiroの仕様駆動開発から見えてきたAIコーディングとの正しい付き合い方
clshinji
1
180
Zendeskのチケットを Amazon Bedrockで 解析した
ryokosuge
3
230
サイトを作ったらNFCタグキーホルダーを爆速で作れ!
yuukis
0
740
MCPでVibe Working。そして、結局はContext Eng(略)/ Working with Vibe on MCP And Context Eng
rkaga
3
230
Nuances on Kubernetes - RubyConf Taiwan 2025
envek
0
220
モバイルアプリからWebへの横展開を加速した話_Claude_Code_実践術.pdf
kazuyasakamoto
0
290
Vue・React マルチプロダクト開発を支える Vite
andpad
0
110
Rancher と Terraform
fufuhu
2
170
Featured
See All Featured
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
36
2.5k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
126
53k
A Tale of Four Properties
chriscoyier
160
23k
How to Think Like a Performance Engineer
csswizardry
26
1.9k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
The Straight Up "How To Draw Better" Workshop
denniskardys
236
140k
Building Applications with DynamoDB
mza
96
6.6k
Done Done
chrislema
185
16k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
6.1k
Transcript
© 2019 Renesas Electronics Corporation. All rights reserved. Webカメラサンプルの ご紹介
ET & IoT Technology 2019 2019年11月20日 加藤 大樹 ルネサス エレクトロニクス株式会社
© 2019 Renesas Electronics Corporation. All rights reserved. 自己紹介 Page
2 ・2014年12月よりMbed担当 ・Mbed用ソフト整備、がじぇるね活動 など ・個人ページでも各種サンプルプログラムを公開しています ・Mbedマイページ:https://os.mbed.com/users/dkato/ ・GitHubマイページ:https://github.com/d-kato
© 2019 Renesas Electronics Corporation. All rights reserved. WEBカメラサンプル Page
3 GR-Boards_WebCamera https://os.mbed.com/teams/Renesas/code/GR-Boards_WebCamera/
© 2019 Renesas Electronics Corporation. All rights reserved. ネットワークの接続方法 Page
4 本サンプルは ステーションモード(STAモード)と アクセスポイントモード(APモード) の2種類の接続方法が選べます。 ステーションモード(STAモード) GR-LYCHEEを無線クライアントとして使用します。(初期設定) アクセスポイントモード(APモード) GR-LYCHEEを無線アクセスポイントとして使用します。
© 2019 Renesas Electronics Corporation. All rights reserved. ステーションモード(STAモード) Page
5 初期設定はステーションモードです。GR-LYCHEEが接続できるアクセスポイントが必要です。 アクセスポイント アクセスポイント テザリング使用時の構成 無線LANルータ使用時の構成
© 2019 Renesas Electronics Corporation. All rights reserved. アクセスポイントモード(APモード) Page
6 ソースコード中の設定を変更することで、GR-LYCHEEをアクセスポイントとして使用できます。 #define USE_DHCP 0 #if (USE_DHCP == 0) #define IP_ADDRESS "192.168.0.2" #define SUBNET_MASK "255.255.255.0" #define DEFAULT_GATEWAY "192.168.0.3" #endif #define NETWORK_TYPE 3 #if (NETWORK_TYPE >= 2) #define SCAN_NETWORK 1 #define WLAN_SSID "lychee00" #define WLAN_PSK "8~63文字 半角英数字記号" #define WLAN_SECURITY NSAPI_SECURITY_WPA_WPA2 #endif 他の人と重複し ない名前にする アクセスポイント GR-LYCHEEがアクセスポイント “main.cpp” 19行目付近 のコードを変更
© 2019 Renesas Electronics Corporation. All rights reserved. ターミナルソフトの使い方 Page
7 ① デスクトップ上の「Tera Term」を起動。 ② シリアルポートを選択。 ③ GR-LYCHEEの リセットボタンを押す。 ① ② ③
© 2019 Renesas Electronics Corporation. All rights reserved. Renesas.com