{"id":25556899,"url":"https://github.com/kevin-doolaeghe/initiation-esp32","last_synced_at":"2026-07-29T11:31:25.988Z","repository":{"id":181214620,"uuid":"384409622","full_name":"kevin-doolaeghe/initiation-esp32","owner":"kevin-doolaeghe","description":"Chargement d'une carte ESP32","archived":false,"fork":false,"pushed_at":"2021-11-06T22:10:23.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T00:40:46.665Z","etag":null,"topics":["documentation","esp32","learning-by-doing"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kevin-doolaeghe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-07-09T10:59:47.000Z","updated_at":"2022-02-08T21:31:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"2acf0cda-130b-43f0-88e9-bde4d4fd2737","html_url":"https://github.com/kevin-doolaeghe/initiation-esp32","commit_stats":null,"previous_names":["kevin-doolaeghe/initiation-esp32"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kevin-doolaeghe/initiation-esp32","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Finitiation-esp32","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Finitiation-esp32/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Finitiation-esp32/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Finitiation-esp32/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kevin-doolaeghe","download_url":"https://codeload.github.com/kevin-doolaeghe/initiation-esp32/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Finitiation-esp32/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020080,"owners_count":26086806,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["documentation","esp32","learning-by-doing"],"created_at":"2025-02-20T14:56:15.349Z","updated_at":"2025-10-14T17:42:10.677Z","avatar_url":"https://github.com/kevin-doolaeghe.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chargement d'une carte ESP32\n\n## Auteur\n\n### Kevin Doolaeghe\n\n## Connexion de la carte ESP32\n\n* Installation de l'utilitaire `esptool` :\n```\nsudo apt update \u0026\u0026 sudo apt install wget python3 python3-pip\npip3 install esptool\n```\n\n* Attribution des droits d'utilisation des ports USB à l'utilisateur :\n```\nsudo usermod -aG dialout,tty {USER}\n```\n\n* Vérifier que le périphérique est correctement reconnu par le système :\n```\nls -l /dev/ttyUSB*\n```\n\n* Installation du moniteur série `minicom` :\n```\nsudo apt install minicom\n```\n\n* Connexion au périphérique `ttyUSB0` avec l'utilitaire `minicom` :\n```\nminicom -D /dev/ttyUSB0\n```\n\n* Réinitialisation de la mémoire FLASH :\n```\nesptool.py --chip esp32 --port /dev/ttyUSB0 erase_flash\n```\n\n* Chargement du firmware :\n```\nesptool.py --chip esp32 --port /dev/ttyUSB0 --baud 460800 write_flash -z 0x1000 [firmware].bin\n```\n\n## Installation du firmware Tasmota pour ESP32-CAM sous Linux\n\n1. Installer l'utilitaire `esptool`\n\n2. Télécharger les fichiers requis pour flasher le firmware :\n```\nwget https://github.com/arendst/Tasmota-firmware/tree/main/static/webcam/boot_app0.bin\nwget https://github.com/arendst/Tasmota-firmware/tree/main/static/webcam/bootloader_dout_40m.bin\nwget https://github.com/arendst/Tasmota-firmware/tree/main/static/webcam/bootloader_qio_80m.bin\nwget https://github.com/arendst/Tasmota-firmware/tree/main/static/webcam/partitions.bin\n```\n\n3. [Télécharger](http://ota.tasmota.com/tasmota32/release/) le firmware `tasmota32-webcam.bin`\n```\nwget http://ota.tasmota.com/tasmota32/release/tasmota32-webcam.bin\n```\n\n4. Flasher l'ESP32 :\n```\nesptool.py --chip esp32 --port COM5 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dout --flash_freq 40m --flash_size detect 0x1000 bootloader_dout_40m.bin 0x8000 partitions.bin 0xe000 boot_app0.bin 0x10000 tasmota32.bin\n```\n\n## Installation du firmware Tasmota pour ESP32-CAM sous Windows\n\n1. [Télécharger](https://github.com/Jason2866/ESP_Flasher/releases) l'exécutable `ESP-Flasher`\n\n2. [Télécharger](https://tasmota.github.io/docs/ESP32/) le firmware Tasmota\n\n3. [Télécharger](http://www.wch-ic.com/downloads/CH341SER_ZIP.html) le driver pour le composant CH340 du module USB\n\n4. Connecter le module ESP32-CAM au PC par l'intermédiaire du module USB\n\n5. Installer le driver du module USB\n\n6. Démarrer l'exécutable `ESP-Flasher` et sélectionner le port série adéquat ainsi que le firmware téléchargé précédemment\n\n7. Flasher l'ESP32\n\n## Sources\n\n- [Dépôt Git de l'utilitaire `esptool`](https://github.com/espressif/esptool)\n- [Driver CH340 de la carte ESP32-CAM-MB](https://github.com/juliagoda/CH341SER)\n- [Installation du driver pour le composant CH340 du module USB](https://learn.sparkfun.com/tutorials/how-to-install-ch340-drivers/all)\n- [Chargement d'une carte ESP32-CAM sous Tasmota](https://easydomoticz.com/forum/viewtopic.php?f=24\u0026p=94316)\n- [Utilisation du module EPS32-CAM avec Arduino® - Le Blog Gotronic](https://www.gotronic.fr/blog/guides/utilisation-du-module-eps32-cam-avec-arduino/)\n- [Installation du firware Tasmota sur ESP32](https://tasmota.github.io/docs/ESP32/)\n- [Programmation d'une carte ESP32-CAM via une carte Arduino Uno](https://www.youtube.com/watch?v=q-KIpFIbRMk)\n- [Erreur `rst:0x1 (POWERON_RESET),boot:0x3 (DOWNLOAD_BOOT(UART0/UART1/SDIO_REI_REO_V2))`](https://github.com/espressif/arduino-esp32/issues/577)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevin-doolaeghe%2Finitiation-esp32","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkevin-doolaeghe%2Finitiation-esp32","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevin-doolaeghe%2Finitiation-esp32/lists"}