Skip to content

Commit

Permalink
✨ feat: Add ESP32C3 deep sleep firmware
Browse files Browse the repository at this point in the history
- Add `esp_deep_sleep.bin` firmware
- Update `installer/index.html` to include deep sleep option
- Create `installer/manifest/esp_deep_sleep.json` manifest file
  • Loading branch information
Cp0204 committed Jul 13, 2024
1 parent c92ee21 commit bc765d3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Binary file added installer/firmware/esp_deep_sleep.bin
Binary file not shown.
3 changes: 3 additions & 0 deletions installer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ <h1>CubeFX installer</h1>
<optgroup label="CubeFX">
<option value="cubefx">CubeFX (latest)</option>
</optgroup>
<optgroup label="Sleep">
<option value="esp_deep_sleep">Put your ESP32C3 sleep and do nothing!</option>
</optgroup>
</select>
</div>

Expand Down
17 changes: 17 additions & 0 deletions installer/manifest/esp_deep_sleep.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "esp_deep_sleep",
"version": "dev",
"funding_url": "https://buymeacoffee.com/cp0204",
"new_install_prompt_erase": false,
"builds": [
{
"chipFamily": "ESP32-C3",
"parts": [
{
"path": "../firmware/esp_deep_sleep.bin",
"offset": 0
}
]
}
]
}

0 comments on commit bc765d3

Please sign in to comment.