├── .github ├── ISSUE_TEMPLATE │ └── issue-report.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Kconfig ├── LICENSE ├── README.md ├── docs └── logo.png ├── examples ├── README.md ├── basic_ota │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ └── idf_component.yml │ ├── partitions_example.csv │ └── sdkconfig.defaults ├── basic_ota_rollback │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ └── idf_component.yml │ ├── partitions_example.csv │ └── sdkconfig.defaults ├── cloud_logging │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ └── idf_component.yml │ ├── partitions_example.csv │ └── sdkconfig.defaults ├── hello_cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── build_app.bat │ ├── components │ │ └── led_strip │ │ │ ├── .component_hash │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.md │ │ │ ├── examples │ │ │ ├── led_strip_rmt_ws2812 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ └── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── idf_component.yml │ │ │ │ │ └── led_strip_rmt_ws2812_main.c │ │ │ └── led_strip_spi_ws2812 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ └── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── idf_component.yml │ │ │ │ └── led_strip_spi_ws2812_main.c │ │ │ ├── idf_component.yml │ │ │ ├── include │ │ │ ├── led_strip.h │ │ │ ├── led_strip_rmt.h │ │ │ ├── led_strip_spi.h │ │ │ └── led_strip_types.h │ │ │ ├── interface │ │ │ └── led_strip_interface.h │ │ │ └── src │ │ │ ├── led_strip_api.c │ │ │ ├── led_strip_rmt_dev.c │ │ │ ├── led_strip_rmt_dev_idf4.c │ │ │ ├── led_strip_rmt_encoder.c │ │ │ ├── led_strip_rmt_encoder.h │ │ │ └── led_strip_spi_dev.c │ ├── config_app.bat │ ├── flash_monitor.bat │ ├── main │ │ ├── app_main.c │ │ ├── include │ │ │ └── led_driver.h │ │ └── led_driver.c │ ├── partitions_example.csv │ └── sdkconfig.defaults ├── hello_wokwi │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── diagram.json │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ └── idf_component.yml │ ├── partitions_example.csv │ ├── sdkconfig.defaults │ └── wokwi.toml ├── push_data │ ├── batch_mqtt_data │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ └── idf_component.yml │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults │ ├── custom_device_shadow │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ └── idf_component.yml │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults │ ├── esp_touch │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ └── idf_component.yml │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults │ └── temp_humid │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ ├── idf_component.yml │ │ └── sht │ │ │ ├── sht31.c │ │ │ └── sht31.h │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults ├── receive_data │ ├── actions_handling │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ └── idf_component.yml │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults │ ├── toggle_led │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.projbuild │ │ │ ├── app_main.c │ │ │ └── idf_component.yml │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults │ └── update_config │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ └── idf_component.yml │ │ ├── partitions_example.csv │ │ └── sdkconfig.defaults └── setup_client │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ ├── app_main.c │ └── idf_component.yml │ ├── partitions_example.csv │ └── sdkconfig.defaults ├── idf_component.yml ├── include ├── README.md ├── core_sdk │ ├── bytebeam_action.h │ ├── bytebeam_client.h │ ├── bytebeam_log.h │ ├── bytebeam_ota.h │ ├── bytebeam_sdk.h │ └── bytebeam_stream.h └── mcu_hal │ ├── bytebeam_esp_hal.h │ └── bytebeam_hal.h ├── library.json ├── provisioning ├── README.md ├── fatfs_provisioning │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── config_data │ │ ├── .gitkeep │ │ └── deviceconfig.json │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.c │ ├── partitions_example.csv │ └── sdkconfig.defaults └── spiffs_provisioning │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── config_data │ ├── .gitkeep │ └── device_config.json │ ├── main │ ├── CMakeLists.txt │ └── app_main.c │ ├── partitions_example.csv │ └── sdkconfig.defaults └── src ├── README.md ├── core_sdk ├── bytebeam_action.c ├── bytebeam_client.c ├── bytebeam_log.c ├── bytebeam_ota.c └── bytebeam_stream.c └── mcu_hal └── bytebeam_esp_hal.c /.github/ISSUE_TEMPLATE/issue-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/.github/ISSUE_TEMPLATE/issue-report.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/README.md -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/docs/logo.png -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/basic_ota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic_ota/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/Makefile -------------------------------------------------------------------------------- /examples/basic_ota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/README.md -------------------------------------------------------------------------------- /examples/basic_ota/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic_ota/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/main/app_main.c -------------------------------------------------------------------------------- /examples/basic_ota/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/main/idf_component.yml -------------------------------------------------------------------------------- /examples/basic_ota/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/partitions_example.csv -------------------------------------------------------------------------------- /examples/basic_ota/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/basic_ota_rollback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic_ota_rollback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/Makefile -------------------------------------------------------------------------------- /examples/basic_ota_rollback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/README.md -------------------------------------------------------------------------------- /examples/basic_ota_rollback/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/basic_ota_rollback/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/main/app_main.c -------------------------------------------------------------------------------- /examples/basic_ota_rollback/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/main/idf_component.yml -------------------------------------------------------------------------------- /examples/basic_ota_rollback/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/partitions_example.csv -------------------------------------------------------------------------------- /examples/basic_ota_rollback/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/basic_ota_rollback/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/cloud_logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cloud_logging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/Makefile -------------------------------------------------------------------------------- /examples/cloud_logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/README.md -------------------------------------------------------------------------------- /examples/cloud_logging/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cloud_logging/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/main/app_main.c -------------------------------------------------------------------------------- /examples/cloud_logging/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/main/idf_component.yml -------------------------------------------------------------------------------- /examples/cloud_logging/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/partitions_example.csv -------------------------------------------------------------------------------- /examples/cloud_logging/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/cloud_logging/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/hello_cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/README.md -------------------------------------------------------------------------------- /examples/hello_cmake/build_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/build_app.bat -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/.component_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/.component_hash -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/CHANGELOG.md -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/LICENSE -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/README.md -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/api.md -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/README.md -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/main/idf_component.yml -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/main/led_strip_rmt_ws2812_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_rmt_ws2812/main/led_strip_rmt_ws2812_main.c -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/README.md -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/main/idf_component.yml -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/main/led_strip_spi_ws2812_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/examples/led_strip_spi_ws2812/main/led_strip_spi_ws2812_main.c -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/idf_component.yml -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/include/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/include/led_strip.h -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/include/led_strip_rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/include/led_strip_rmt.h -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/include/led_strip_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/include/led_strip_spi.h -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/include/led_strip_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/include/led_strip_types.h -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/interface/led_strip_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/interface/led_strip_interface.h -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/src/led_strip_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/src/led_strip_api.c -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/src/led_strip_rmt_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/src/led_strip_rmt_dev.c -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/src/led_strip_rmt_dev_idf4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/src/led_strip_rmt_dev_idf4.c -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/src/led_strip_rmt_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/src/led_strip_rmt_encoder.c -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/src/led_strip_rmt_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/src/led_strip_rmt_encoder.h -------------------------------------------------------------------------------- /examples/hello_cmake/components/led_strip/src/led_strip_spi_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/components/led_strip/src/led_strip_spi_dev.c -------------------------------------------------------------------------------- /examples/hello_cmake/config_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/config_app.bat -------------------------------------------------------------------------------- /examples/hello_cmake/flash_monitor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/flash_monitor.bat -------------------------------------------------------------------------------- /examples/hello_cmake/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/main/app_main.c -------------------------------------------------------------------------------- /examples/hello_cmake/main/include/led_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/main/include/led_driver.h -------------------------------------------------------------------------------- /examples/hello_cmake/main/led_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/main/led_driver.c -------------------------------------------------------------------------------- /examples/hello_cmake/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/partitions_example.csv -------------------------------------------------------------------------------- /examples/hello_cmake/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_cmake/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/hello_wokwi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_wokwi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/Makefile -------------------------------------------------------------------------------- /examples/hello_wokwi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/README.md -------------------------------------------------------------------------------- /examples/hello_wokwi/diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/diagram.json -------------------------------------------------------------------------------- /examples/hello_wokwi/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_wokwi/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/main/app_main.c -------------------------------------------------------------------------------- /examples/hello_wokwi/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/main/idf_component.yml -------------------------------------------------------------------------------- /examples/hello_wokwi/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/partitions_example.csv -------------------------------------------------------------------------------- /examples/hello_wokwi/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/hello_wokwi/wokwi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/hello_wokwi/wokwi.toml -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/Makefile -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/README.md -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/main/app_main.c -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/main/idf_component.yml -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/partitions_example.csv -------------------------------------------------------------------------------- /examples/push_data/batch_mqtt_data/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/batch_mqtt_data/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/Makefile -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/README.md -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/main/app_main.c -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/main/idf_component.yml -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/partitions_example.csv -------------------------------------------------------------------------------- /examples/push_data/custom_device_shadow/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/custom_device_shadow/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/push_data/esp_touch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/esp_touch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/Makefile -------------------------------------------------------------------------------- /examples/push_data/esp_touch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/README.md -------------------------------------------------------------------------------- /examples/push_data/esp_touch/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/esp_touch/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/main/app_main.c -------------------------------------------------------------------------------- /examples/push_data/esp_touch/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/main/idf_component.yml -------------------------------------------------------------------------------- /examples/push_data/esp_touch/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/partitions_example.csv -------------------------------------------------------------------------------- /examples/push_data/esp_touch/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/esp_touch/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/push_data/temp_humid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/temp_humid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/Makefile -------------------------------------------------------------------------------- /examples/push_data/temp_humid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/README.md -------------------------------------------------------------------------------- /examples/push_data/temp_humid/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/push_data/temp_humid/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/main/app_main.c -------------------------------------------------------------------------------- /examples/push_data/temp_humid/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/main/idf_component.yml -------------------------------------------------------------------------------- /examples/push_data/temp_humid/main/sht/sht31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/main/sht/sht31.c -------------------------------------------------------------------------------- /examples/push_data/temp_humid/main/sht/sht31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/main/sht/sht31.h -------------------------------------------------------------------------------- /examples/push_data/temp_humid/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/partitions_example.csv -------------------------------------------------------------------------------- /examples/push_data/temp_humid/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/push_data/temp_humid/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/CMakeLists.txt -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/Makefile -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/README.md -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/main/app_main.c -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/main/idf_component.yml -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/partitions_example.csv -------------------------------------------------------------------------------- /examples/receive_data/actions_handling/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/actions_handling/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/CMakeLists.txt -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/Makefile -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/README.md -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/main/Kconfig.projbuild -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/main/app_main.c -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/main/idf_component.yml -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/partitions_example.csv -------------------------------------------------------------------------------- /examples/receive_data/toggle_led/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/toggle_led/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/receive_data/update_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/CMakeLists.txt -------------------------------------------------------------------------------- /examples/receive_data/update_config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/Makefile -------------------------------------------------------------------------------- /examples/receive_data/update_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/README.md -------------------------------------------------------------------------------- /examples/receive_data/update_config/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/receive_data/update_config/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/main/app_main.c -------------------------------------------------------------------------------- /examples/receive_data/update_config/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/main/idf_component.yml -------------------------------------------------------------------------------- /examples/receive_data/update_config/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/partitions_example.csv -------------------------------------------------------------------------------- /examples/receive_data/update_config/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/receive_data/update_config/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/setup_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/setup_client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/Makefile -------------------------------------------------------------------------------- /examples/setup_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/README.md -------------------------------------------------------------------------------- /examples/setup_client/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/setup_client/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/main/app_main.c -------------------------------------------------------------------------------- /examples/setup_client/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/main/idf_component.yml -------------------------------------------------------------------------------- /examples/setup_client/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/partitions_example.csv -------------------------------------------------------------------------------- /examples/setup_client/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/examples/setup_client/sdkconfig.defaults -------------------------------------------------------------------------------- /idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/idf_component.yml -------------------------------------------------------------------------------- /include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/README.md -------------------------------------------------------------------------------- /include/core_sdk/bytebeam_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/core_sdk/bytebeam_action.h -------------------------------------------------------------------------------- /include/core_sdk/bytebeam_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/core_sdk/bytebeam_client.h -------------------------------------------------------------------------------- /include/core_sdk/bytebeam_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/core_sdk/bytebeam_log.h -------------------------------------------------------------------------------- /include/core_sdk/bytebeam_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/core_sdk/bytebeam_ota.h -------------------------------------------------------------------------------- /include/core_sdk/bytebeam_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/core_sdk/bytebeam_sdk.h -------------------------------------------------------------------------------- /include/core_sdk/bytebeam_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/core_sdk/bytebeam_stream.h -------------------------------------------------------------------------------- /include/mcu_hal/bytebeam_esp_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/mcu_hal/bytebeam_esp_hal.h -------------------------------------------------------------------------------- /include/mcu_hal/bytebeam_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/include/mcu_hal/bytebeam_hal.h -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/library.json -------------------------------------------------------------------------------- /provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/README.md -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/CMakeLists.txt -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/Makefile -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/README.md -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/config_data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/config_data/.gitkeep -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/config_data/deviceconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/config_data/deviceconfig.json -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/main/CMakeLists.txt -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/main/app_main.c -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/partitions_example.csv -------------------------------------------------------------------------------- /provisioning/fatfs_provisioning/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/fatfs_provisioning/sdkconfig.defaults -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/CMakeLists.txt -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/Makefile -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/README.md -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/config_data/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/config_data/.gitkeep -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/config_data/device_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/config_data/device_config.json -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/main/CMakeLists.txt -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/main/app_main.c -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/partitions_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/partitions_example.csv -------------------------------------------------------------------------------- /provisioning/spiffs_provisioning/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/provisioning/spiffs_provisioning/sdkconfig.defaults -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/README.md -------------------------------------------------------------------------------- /src/core_sdk/bytebeam_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/core_sdk/bytebeam_action.c -------------------------------------------------------------------------------- /src/core_sdk/bytebeam_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/core_sdk/bytebeam_client.c -------------------------------------------------------------------------------- /src/core_sdk/bytebeam_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/core_sdk/bytebeam_log.c -------------------------------------------------------------------------------- /src/core_sdk/bytebeam_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/core_sdk/bytebeam_ota.c -------------------------------------------------------------------------------- /src/core_sdk/bytebeam_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/core_sdk/bytebeam_stream.c -------------------------------------------------------------------------------- /src/mcu_hal/bytebeam_esp_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytebeamio/bytebeam-esp-idf-sdk/HEAD/src/mcu_hal/bytebeam_esp_hal.c --------------------------------------------------------------------------------