# embedded-sdk **Repository Path**: du-jianmin/embedded-sdk ## Basic Information - **Project Name**: embedded-sdk - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-30 - **Last Updated**: 2024-12-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Embedded for LiveKit # Table of Contents - [Docs](#docs) - [Installation](#installation) - [Usage](#usage) ## Docs Docs and guides at [https://docs.livekit.io](https://docs.livekit.io). ## Platform/Device Support This SDK has been developed tested on a `esp32s3` and `linux`. You don't need any physical hardware to run this SDK. You can use it from Linux directly. To use it on hardware purchase either of these microcontrollers. Others may work, but this is what has been developed against. * [Freenove ESP32-S3-WROOM](https://www.amazon.com/gp/product/B0BMQ8F7FN) * [Sonatino - ESP32-S3 Audio Development Board](https://www.amazon.com/gp/product/B0BVY8RJNP) You can get a ESP32S3 for much less money on eBay/AliExpress. ## Installation `protoc` must be in your path with `protobufc` installed. Call `set-target` with the platform you are targetting. Today only `linux` and `esp32s3` are supported. * `idf.py set-target esp32s3` Configure device specific settings. None needed at this time * `idf.py menuconfig` Set your Wifi SSID + Password as env variables * `export WIFI_SSID=foo` * `export WIFI_PASSWORD=bar` * `export LIVEKIT_URL` Build * `idf.py build` If you built for `esp32s3` run the following to flash to the device * `sudo -E idf.py flash` If you built for `linux` you can run the binary directly * `./build/src.elf` See [build.yaml](.github/workflows/build.yaml) for a Docker command to do this all in one step. ## Usage