> For the complete documentation index, see [llms.txt](https://dronebridge.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dronebridge.gitbook.io/docs/dronebridge-for-esp32-drone-light-show-edition/developers-dlse-api-definition/ota.md).

# OTA

Over-the-air firmware and web-app updates

## Upload a new application firmware image (OTA)

> Streams a new application binary to the OTA partition and reboots into it upon successful write.<br>

```json
{"openapi":"3.0.3","info":{"title":"DroneBridge ESP32 REST API","version":"1.0.0"},"tags":[{"name":"OTA","description":"Over-the-air firmware and web-app updates"}],"servers":[{"url":"http://192.168.2.1","description":"Default ESP32 AP address"}],"paths":{"/update/firmware":{"post":{"tags":["OTA"],"summary":"Upload a new application firmware image (OTA)","description":"Streams a new application binary to the OTA partition and reboots into it upon successful write.\n","operationId":"otaFirmwareUpdate","requestBody":{"required":true,"content":{"application/octet-stream":{"schema":{"type":"string","format":"binary","description":"ESP32 application binary (db_esp32.bin)"}}}},"responses":{"200":{"description":"Firmware update accepted and device will reboot"},"400":{"description":"Bad or incomplete image"},"500":{"description":"OTA write failure"}}}}}}
```

## Upload a new web-app filesystem image (OTA)

> Streams a new SPIFFS/LittleFS web-app image to the www partition.<br>

```json
{"openapi":"3.0.3","info":{"title":"DroneBridge ESP32 REST API","version":"1.0.0"},"tags":[{"name":"OTA","description":"Over-the-air firmware and web-app updates"}],"servers":[{"url":"http://192.168.2.1","description":"Default ESP32 AP address"}],"paths":{"/update/www":{"post":{"tags":["OTA"],"summary":"Upload a new web-app filesystem image (OTA)","description":"Streams a new SPIFFS/LittleFS web-app image to the www partition.\n","operationId":"otaWwwUpdate","requestBody":{"required":true,"content":{"application/octet-stream":{"schema":{"type":"string","format":"binary","description":"ESP32 filesystem image (www.bin)"}}}},"responses":{"200":{"description":"Web-app image updated successfully"},"400":{"description":"Bad or incomplete image"},"500":{"description":"OTA write failure"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dronebridge.gitbook.io/docs/dronebridge-for-esp32-drone-light-show-edition/developers-dlse-api-definition/ota.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
