Skip to content

SiliconWit/embedded-programming-esp32

Repository files navigation

title Embedded Programming ESP32 - Collaboration Guide
description Contributing guide for Embedded Programming ESP32 course content
tableOfContents true
sidebar
order
999

Embedded Programming ESP32

Build License Contributors Welcome

Read this course at: https://siliconwit.com/education/embedded-programming-esp32/

A course on ESP32 development using the ESP-IDF framework. Lessons cover Wi-Fi, HTTP, MQTT, BLE, OTA updates, and power management, building toward a connected sensor network project.

Lessons

# Title
1 ESP-IDF and Dual-Core Architecture
2 GPIO Peripherals and Drivers
3 Wi-Fi and Network Configuration
4 HTTP Server and REST API
5 MQTT and Cloud Communication
6 Bluetooth Low Energy BLE
7 OTA Updates and Secure Boot
8 Power Management and Deep Sleep
9 Connected Sensor Network

File Structure

embedded-programming-esp32/
├── lesson-0.mdx        # Course introduction
├── lesson-1.mdx        # ESP-IDF and Dual-Core Architecture
├── lesson-2.mdx        # GPIO Peripherals and Drivers
├── lesson-3.mdx        # Wi-Fi and Network Configuration
├── lesson-4.mdx        # HTTP Server and REST API
├── lesson-5.mdx        # MQTT and Cloud Communication
├── lesson-6.mdx        # Bluetooth Low Energy BLE
├── lesson-7.mdx        # OTA Updates and Secure Boot
├── lesson-8.mdx        # Power Management and Deep Sleep
├── lesson-9.mdx        # Connected Sensor Network
└── README.md

How to Contribute

All commands below work on Linux, macOS, and Windows (using Git Bash, PowerShell, or Command Prompt with Git installed).

For Team Members (with push access)

First time setup (clone the repo once):

git clone https://github.com/SiliconWit/embedded-programming-esp32.git
cd embedded-programming-esp32

Every time you start working:

git pull origin main

Always pull before making changes. This avoids conflicts with other contributors.

After making your changes:

git add .
git commit -m "Brief description of what you changed"
git push origin main

If you get a push error (someone pushed before you):

git pull origin main

Git will merge the changes automatically in most cases. If there is a conflict, Git will mark the conflicting lines in the file. Open the file, choose which version to keep, then:

git add .
git commit -m "Resolve merge conflict"
git push origin main

Tips to avoid conflicts:

  • Always git pull origin main before you start working
  • Push your changes as soon as you are done, do not hold onto uncommitted work for long
  • Coordinate with other contributors so two people are not editing the same file at the same time

For External Contributors (without push access)

  1. Fork the repository: SiliconWit/embedded-programming-esp32
  2. Clone your fork:
    git clone https://github.com/YOUR-USERNAME/embedded-programming-esp32.git
    cd embedded-programming-esp32
  3. Make your changes and commit:
    git add .
    git commit -m "Brief description of what you changed"
    git push origin main
  4. Open a Pull Request against main on the original repository
  5. Describe what you changed and why in the PR description

Content Standards

  • All lesson files use .mdx format
  • Do not use <BionicText> in this course
  • Code blocks should include a title attribute:
    ```c title="wifi_connect.c"
    esp_wifi_start();
    ```
  • Use Starlight components (<Tabs>, <TabItem>, <Steps>, <Card>) where appropriate
  • Keep paragraphs concise and focused on practical application
  • Include working code examples that readers can compile and flash

Local Development

Clone the main site repository and initialize submodules:

git clone --recurse-submodules <main-repo-url>
cd siliconwit-com
npm install
npm run dev

To test a production build:

npm run build

License

This course content is released under the MIT License.

About

The ESP32 brings Wi-Fi and Bluetooth to embedded systems for under $5. This course teaches you to build connected devices using ESP-IDF (the official framework), not Arduino wrappers. Each lesson produces a working networked project, progressing from local peripherals to cloud-connected IoT nodes with OTA updates and battery optimization. #ESP32

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

 
 
 

Contributors

Languages