├── .gitignore ├── LICENSE ├── README.md ├── shell ├── CMakeLists.txt ├── esp32.overlay ├── prj.conf └── src │ └── main.c ├── smart_button_central ├── CMakeLists.txt ├── esp32.overlay ├── prj.conf └── src │ ├── ble.c │ ├── ble.h │ └── main.c └── smart_led_peripheral ├── CMakeLists.txt ├── esp32.overlay ├── prj.conf └── src └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/README.md -------------------------------------------------------------------------------- /shell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/shell/CMakeLists.txt -------------------------------------------------------------------------------- /shell/esp32.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/shell/esp32.overlay -------------------------------------------------------------------------------- /shell/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/shell/prj.conf -------------------------------------------------------------------------------- /shell/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/shell/src/main.c -------------------------------------------------------------------------------- /smart_button_central/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_button_central/CMakeLists.txt -------------------------------------------------------------------------------- /smart_button_central/esp32.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_button_central/esp32.overlay -------------------------------------------------------------------------------- /smart_button_central/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_button_central/prj.conf -------------------------------------------------------------------------------- /smart_button_central/src/ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_button_central/src/ble.c -------------------------------------------------------------------------------- /smart_button_central/src/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_button_central/src/ble.h -------------------------------------------------------------------------------- /smart_button_central/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_button_central/src/main.c -------------------------------------------------------------------------------- /smart_led_peripheral/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_led_peripheral/CMakeLists.txt -------------------------------------------------------------------------------- /smart_led_peripheral/esp32.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_led_peripheral/esp32.overlay -------------------------------------------------------------------------------- /smart_led_peripheral/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_led_peripheral/prj.conf -------------------------------------------------------------------------------- /smart_led_peripheral/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-angerer/zephyr_basics/HEAD/smart_led_peripheral/src/main.c --------------------------------------------------------------------------------