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
86
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
740
WinbondさんのSample ShieldをGR-LYCHEEで動かしてみた / I tried Winbond's Sample Shield with GR-LYCHEE
dkato
0
650
Other Decks in Programming
See All in Programming
小田原でみんなで一句詠みたいな #phpcon_odawara
stefafafan
0
350
KawaiiLT 登壇資料 キャリアとモチベーション
hiiragi
0
160
Lambda(Python)の リファクタリングが好きなんです
komakichi
3
220
カウシェで Four Keys の改善を試みた理由
ike002jp
1
110
Vibe Coding の話をしよう
schroneko
12
3.3k
Optimizing JRuby 10
headius
0
510
RuboCop: Modularity and AST Insights
koic
2
2k
プロダクト横断分析に役立つ、事前集計しないサマリーテーブル設計
hanon52_
2
490
状態と共に暮らす:ステートフルへの挑戦
ypresto
3
980
一緒に働きたくなるプログラマの思想 #QiitaConference
mu_zaru
76
18k
Laravel × Clean Architecture
bumptakayuki
PRO
0
120
The Evolution of the CRuby Build System
kateinoigakukun
1
740
Featured
See All Featured
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
21k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.3k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.4k
BBQ
matthewcrist
88
9.6k
How STYLIGHT went responsive
nonsquared
100
5.5k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Producing Creativity
orderedlist
PRO
344
40k
KATA
mclloyd
29
14k
Done Done
chrislema
184
16k
Navigating Team Friction
lara
185
15k
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