├── .gitignore ├── CMakeLists.txt ├── README.md ├── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── board.c ├── board.h ├── http_server.c ├── http_server.h ├── lamp_nvs.c ├── lamp_nvs.h ├── main.c └── main.h ├── partitions.csv └── sdkconfig example /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/README.md -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/board.c -------------------------------------------------------------------------------- /main/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/board.h -------------------------------------------------------------------------------- /main/http_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/http_server.c -------------------------------------------------------------------------------- /main/http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/http_server.h -------------------------------------------------------------------------------- /main/lamp_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/lamp_nvs.c -------------------------------------------------------------------------------- /main/lamp_nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/lamp_nvs.h -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/main.c -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/main/main.h -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraworg/LEDVANCE_BLE_MESH/HEAD/sdkconfig example --------------------------------------------------------------------------------