ユーザ用ツール

サイト用ツール


esp32

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
esp32 [2020/04/09 09:32] nabezoesp32 [2020/11/12 01:54] (現在) nabezo
行 15: 行 15:
 https://tomono.tokyo/2019/03/11/7519/ https://tomono.tokyo/2019/03/11/7519/
  
-==== esp32cam farm1 ==== +==== 接続URL ==== 
-  * tsaarni/esp32-micropython-webcam https://github.com/tsaarni/esp32-micropython-webcam+ 
 +  http://esp32camip 
 +  http://esp32camip:81/stream/ 
 + 
 + 
 + 
 +==== pin接続 ==== 
 +usg-ttlコンバータと接続 
 +  usb:gnd-gnd(黒)=esp32cam:gnd  
 +  usb:rx -tx(白) =esp32cam:uot   
 +  usb:tx -rx(緑) =esp32cam:uor   
 + 
 +==== arduinoシリアルポート ==== 
 +シリアルモニタのboudrateを115200とする 
 + 
 + 
 + 
 + 
 +===== ardiuno web-server ===== 
 +webserver+raspi  
 +https://randomnerdtutorials.com/esp32-cam-video-streaming-web-server-camera-home-assistant/ 
 + 
 +ESP32-CAM 開発ボード WiFi Bluetoothカメラモジュール 簡単ビルド方法 
 +https://blog.bouhan-tool.com/all/esp32-cam 
 + 
 +===== I2S ===== 
 +ESP32で録音 
 +https://kconputing.hatenablog.com/entry/esp32_i2s_recorde 
 + 
 + 
 + 
 +====== micropython環境 ====== 
 +http://itoi.jp/M5Stack.html#MicroPython 
 + 
 +==== esp32cam firmware1 ==== 
 +  * (souce)tsaarni/esp32-micropython-webcam https://github.com/tsaarni/esp32-micropython-webcam  
 +  * (bin?)tkinjo1985/ESP32-CAM_ImagePost https://github.com/tkinjo1985/ESP32-CAM_ImagePost/tree/master/esp32-cam
  
 動作した 動作した
  
-==== esp32cam farm2 ====+==== esp32cam firmware2 ====
   * shariltumin/esp32-cam-micropython https://github.com/shariltumin/esp32-cam-micropython   * shariltumin/esp32-cam-micropython https://github.com/shariltumin/esp32-cam-micropython
  
 import networkが使えない・・惜しい import networkが使えない・・惜しい
-=== micropython import camera === 
   framesize(size)   framesize(size)
     size == 1 FRAMESIZE_QQVGA  // 160x120     size == 1 FRAMESIZE_QQVGA  // 160x120
行 51: 行 86:
     0-4 (default 0) 1sunny 2cloudy 3office 4home     0-4 (default 0) 1sunny 2cloudy 3office 4home
  
-==== 接続URL ====+==== esp32cam firmware3 ==== 
 +  * uPyCam  https://github.com/lemariva/uPyCam
  
-  http://esp32camip 
-  http://esp32camip:81/stream/ 
- 
- 
- 
-==== pin接続 ==== 
-usg-ttlコンバータと接続 
-  usb:gnd-gnd(黒)=esp32cam:gnd  
-  usb:rx -tx(白) =esp32cam:uot   
-  usb:tx -rx(緑) =esp32cam:uor   
  
-==== arduinoシリアルポート ==== 
-シリアルモニタのboudrateを115200とする 
- 
- 
- 
-===== firmware ===== 
-esp32-camera-for-micropython https://github.com/tsaarni/esp32-camera-for-micropython 
- 
-micropython-with-esp32-cam https://github.com/tsaarni/micropython-with-esp32-cam  
- 
-uPyCam  https://github.com/lemariva/uPyCam 
- 
- 
-https://lemariva.com/blog/2019/09/micropython-how-about-taking-photo-esp32 
- 
-===== ardiuno web-server ===== 
-webserver+raspi  
-https://randomnerdtutorials.com/esp32-cam-video-streaming-web-server-camera-home-assistant/ 
- 
-ESP32-CAM 開発ボード WiFi Bluetoothカメラモジュール 簡単ビルド方法 
-https://blog.bouhan-tool.com/all/esp32-cam 
- 
- 
-====== micropython環境 ====== 
-http://itoi.jp/M5Stack.html#MicroPython 
 ==== wifi ==== ==== wifi ====
 wifi接続 http://ippei8jp.hatenablog.jp/entry/2017/08/17/113753 wifi接続 http://ippei8jp.hatenablog.jp/entry/2017/08/17/113753
行 114: 行 115:
  
 ここのfirmwareを使用 ここのfirmwareを使用
 +
 +===== arduino =====
 +ESP32のWi-fi設定方法調査
 +
 +https://lang-ship.com/blog/work/esp32-wi-fi-setting/
 +====== arduinoIDEの設定 ======
 +ここではubuntuの環境構築を想定 \\
 +(chromebook上のlinuxでもarduinoIDEは動作するがボードに書き込めなかった)
 +
 +ダウンロードしてinstall.shを実行してarduinoIDEをセットアップしておく
 +
 +python2(python python-pip)をインストール
 +  sudo apt install python python-pip
 +
 +===== 環境設定 =====
 +
 +参照)https://docs.m5stack.com/#/en/arduino/arduino_development
 +  *「ファイル」ー「設定」ー「追加のボードマネジャのURL」にhttps://dl.espressif.com/dl/package_esp32_index.jsonを設定
 +  *「ツール」ー「ボード」ー「ボードマネジャ...」で"ESP32"で検索しインストール
 +  *「スケッチ」ー「ライブラリをインクルード」ー「ライブラリを管理」で"ESP32"で検索し必要なものをインストール
 +
 +===== 動作設定 =====
 +
 +
  
esp32.1586392334.txt.gz · 最終更新: 2020/04/09 09:32 by nabezo