├── .gitignore ├── Alexa_for_IoT-Intro ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── components │ ├── alexa_equalizer │ │ ├── CMakeLists.txt │ │ ├── alexa_equalizer.c │ │ ├── alexa_equalizer.h │ │ └── component.mk │ ├── app_cloud │ │ ├── CMakeLists.txt │ │ ├── app_cloud.h │ │ ├── app_cloud_rainmaker.c │ │ └── component.mk │ ├── app_smart_home │ │ ├── CMakeLists.txt │ │ ├── app_smart_home.c │ │ ├── app_smart_home.h │ │ └── component.mk │ ├── audio_hal │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── audio_board │ │ │ ├── audio_board_esp_eye │ │ │ │ ├── README.md │ │ │ │ ├── audio_board.cmake │ │ │ │ ├── audio_board.mk │ │ │ │ └── audio_board │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── audio_board.c │ │ │ │ │ ├── component.mk │ │ │ │ │ └── va_board.c │ │ │ ├── audio_board_hollow │ │ │ │ ├── audio_board.cmake │ │ │ │ ├── audio_board.mk │ │ │ │ └── audio_board │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── audio_board.c │ │ │ │ │ ├── component.mk │ │ │ │ │ └── va_board.c │ │ │ ├── audio_board_lyrat │ │ │ │ ├── audio_board.cmake │ │ │ │ ├── audio_board.mk │ │ │ │ └── audio_board │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── audio_board.c │ │ │ │ │ ├── component.mk │ │ │ │ │ └── va_board.c │ │ │ ├── audio_board_lyratd_dspg │ │ │ │ ├── audio_board.cmake │ │ │ │ ├── audio_board.mk │ │ │ │ └── audio_board │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── audio_board.c │ │ │ │ │ ├── component.mk │ │ │ │ │ └── va_board.c │ │ │ ├── audio_board_m5_core2_aws │ │ │ │ ├── audio_board.cmake │ │ │ │ ├── audio_board.mk │ │ │ │ └── audio_board │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── audio_board.c │ │ │ │ │ ├── component.mk │ │ │ │ │ └── va_board.c │ │ │ └── audio_board_vaquita_dspg │ │ │ │ ├── audio_board.cmake │ │ │ │ ├── audio_board.mk │ │ │ │ └── audio_board │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── audio_board.c │ │ │ │ ├── component.mk │ │ │ │ └── va_board.c │ │ ├── button_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── adc │ │ │ │ └── button_driver.c │ │ │ ├── component.mk │ │ │ ├── gpio │ │ │ │ └── button_driver.c │ │ │ ├── hollow_button │ │ │ │ └── button_driver.c │ │ │ ├── include │ │ │ │ └── button_driver.h │ │ │ ├── m5_core2_aws │ │ │ │ └── button_driver.c │ │ │ └── no_button │ │ │ │ └── button_driver.c │ │ ├── component.mk │ │ ├── display_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── include │ │ │ │ └── display_driver.h │ │ │ └── m5_core2_aws │ │ │ │ ├── alexa_logo.c │ │ │ │ └── display_driver.c │ │ ├── dsp_driver │ │ │ ├── common_dsp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── common_dsp.c │ │ │ │ ├── common_dsp.h │ │ │ │ └── component.mk │ │ │ ├── dspg_driver │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ │ └── license.pdf │ │ │ │ ├── dsp_driver │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── component.mk │ │ │ │ │ ├── include │ │ │ │ │ │ └── dspg_init.h │ │ │ │ │ └── lib │ │ │ │ │ │ └── libdsp_driver.a │ │ │ │ └── dsp_firmware │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── component.mk │ │ │ │ │ ├── lib │ │ │ │ │ └── libdsp_firmware.a │ │ │ │ │ └── revision.txt │ │ │ ├── esp_dsp_driver │ │ │ │ └── dsp_driver │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── component.mk │ │ │ │ │ ├── esp_dsp.c │ │ │ │ │ ├── include │ │ │ │ │ └── esp_dsp.h │ │ │ │ │ └── va_dsp_hal.c │ │ │ └── hollow_driver │ │ │ │ ├── dsp_driver │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── component.mk │ │ │ │ └── va_dsp_hal.c │ │ │ │ └── dsp_firmware │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── component.mk │ │ │ │ └── firmware.bin │ │ ├── esp_codec │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── es8311 │ │ │ │ ├── esp_codec.c │ │ │ │ ├── esp_codec.h │ │ │ │ └── media_hal_codec_init.c │ │ │ ├── es8323 │ │ │ │ ├── esp_codec.c │ │ │ │ ├── esp_codec.h │ │ │ │ └── media_hal_codec_init.c │ │ │ ├── es8388 │ │ │ │ ├── esp_codec.c │ │ │ │ ├── esp_codec.h │ │ │ │ └── media_hal_codec_init.c │ │ │ ├── hollow_codec │ │ │ │ ├── esp_codec.c │ │ │ │ ├── esp_codec.h │ │ │ │ └── media_hal_codec_init.c │ │ │ ├── include │ │ │ │ └── media_hal_codec_init.h │ │ │ └── no_codec │ │ │ │ ├── README.md │ │ │ │ ├── esp_codec.c │ │ │ │ ├── esp_codec.h │ │ │ │ └── media_hal_codec_init.c │ │ ├── include │ │ │ ├── audio_board.h │ │ │ ├── esxxx_common.h │ │ │ ├── media_hal.h │ │ │ ├── va_board.h │ │ │ ├── va_dsp.h │ │ │ └── va_dsp_hal.h │ │ ├── led_driver │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── esp_ledc │ │ │ │ └── led_driver.c │ │ │ ├── hollow_led │ │ │ │ └── led_driver.c │ │ │ ├── include │ │ │ │ ├── led_driver.h │ │ │ │ └── led_driver_utils.c │ │ │ ├── is31fl3216 │ │ │ │ └── led_driver.c │ │ │ ├── is31fl3236 │ │ │ │ └── led_driver.c │ │ │ ├── m5_core2_aws │ │ │ │ └── led_driver.c │ │ │ ├── no_led │ │ │ │ └── led_driver.c │ │ │ └── ws2812 │ │ │ │ └── led_driver.c │ │ ├── led_pattern │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── include │ │ │ │ └── led_pattern.h │ │ │ ├── linear_5 │ │ │ │ ├── alexa │ │ │ │ │ └── led_pattern.c │ │ │ │ └── google │ │ │ │ │ └── led_pattern.c │ │ │ ├── no_pattern │ │ │ │ └── hollow │ │ │ │ │ └── led_pattern.c │ │ │ ├── radial_12 │ │ │ │ ├── alexa │ │ │ │ │ └── led_pattern.c │ │ │ │ ├── google │ │ │ │ │ └── led_pattern.c │ │ │ │ └── single_color │ │ │ │ │ └── alexa │ │ │ │ │ └── led_pattern.c │ │ │ └── single │ │ │ │ ├── alexa │ │ │ │ └── led_pattern.c │ │ │ │ └── single_color │ │ │ │ ├── alexa │ │ │ │ └── led_pattern.c │ │ │ │ └── google │ │ │ │ └── led_pattern.c │ │ ├── media_hal.c │ │ └── va_dsp.c │ ├── audio_pipeline │ │ ├── CMakeLists.txt │ │ ├── audio_pipeline.c │ │ ├── audio_pipeline.h │ │ └── component.mk │ ├── audio_utils │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ ├── abstract_rb.h │ │ │ ├── abstract_rb_utils.h │ │ │ ├── audio_common.h │ │ │ ├── basic_rb.h │ │ │ ├── common_macros.h │ │ │ ├── common_rb.h │ │ │ ├── diag_cli.h │ │ │ ├── esp_audio_mem.h │ │ │ ├── esp_audio_nvs.h │ │ │ ├── esp_audio_pm.h │ │ │ ├── linked_list.h │ │ │ ├── m3u8_parser.h │ │ │ ├── pls_parser.h │ │ │ ├── scli.h │ │ │ ├── special_rb.h │ │ │ └── utils.h │ │ └── src │ │ │ ├── abstract_rb.c │ │ │ ├── abstract_rb_utils.c │ │ │ ├── basic_rb.c │ │ │ ├── diag_cli.c │ │ │ ├── esp_audio_mem.c │ │ │ ├── esp_audio_nvs.c │ │ │ ├── esp_audio_pm.c │ │ │ ├── linked_list.c │ │ │ ├── m3u8_parser.c │ │ │ ├── pls_parser.c │ │ │ ├── scli.c │ │ │ ├── special_rb.c │ │ │ └── utils.c │ ├── basic_player │ │ ├── CMakeLists.txt │ │ ├── basic_player.c │ │ ├── basic_player.h │ │ └── component.mk │ ├── basic_recorder │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── basic_recorder.c │ │ ├── basic_recorder.h │ │ └── component.mk │ ├── bluetooth │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── bluetooth.h │ │ └── src │ │ │ ├── bluetooth.c │ │ │ ├── bluetooth_priv.h │ │ │ ├── bt_app_av.c │ │ │ └── bt_app_av.h │ ├── codecs │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ ├── audio_codec.h │ │ │ ├── esp_equalizer.h │ │ │ └── resampling.h │ │ └── lib │ │ │ └── libcodecs.a │ ├── common │ │ ├── CMakeLists.txt │ │ ├── app_prov.c │ │ ├── app_prov.h │ │ ├── app_wifi.c │ │ ├── app_wifi.h │ │ └── component.mk │ ├── core2forAWS │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── atecc608 │ │ │ ├── atecc608.c │ │ │ └── atecc608.h │ │ ├── axp192 │ │ │ ├── axp192.c │ │ │ ├── axp192.h │ │ │ ├── axp192_i2c.c │ │ │ └── axp192_i2c.h │ │ ├── bm8563 │ │ │ ├── bm8563.c │ │ │ └── bm8563.h │ │ ├── button │ │ │ ├── button.c │ │ │ └── button.h │ │ ├── component.mk │ │ ├── core2forAWS.c │ │ ├── core2forAWS.h │ │ ├── ft6336u │ │ │ ├── ft6336u.c │ │ │ └── ft6336u.h │ │ ├── i2c_bus │ │ │ ├── i2c_device.c │ │ │ └── i2c_device.h │ │ ├── microphone │ │ │ ├── microphone.c │ │ │ └── microphone.h │ │ ├── mpu6886 │ │ │ ├── mpu6886.c │ │ │ └── mpu6886.h │ │ ├── sk6812 │ │ │ ├── sk6812.c │ │ │ └── sk6812.h │ │ ├── speaker │ │ │ ├── core2foraws_speaker.c │ │ │ └── core2foraws_speaker.h │ │ └── tft │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ └── lvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── lv_conf.h │ │ │ └── lvgl │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── main.yml │ │ │ │ ├── merge-to-dev.yml │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ └── ROADMAP.md │ │ │ ├── examples │ │ │ ├── LVGL_Arduino.ino │ │ │ └── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ └── generate_all.py │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── infer_run.sh │ │ │ ├── lv_conf_checker.py │ │ │ └── release │ │ │ │ ├── com.py │ │ │ │ ├── dev.py │ │ │ │ ├── main.py │ │ │ │ ├── proj.py │ │ │ │ └── release.py │ │ │ ├── src │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lv_core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_style_dec.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_style.c │ │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ ├── lv_hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_debug.c │ │ │ │ ├── lv_debug.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_task.c │ │ │ │ ├── lv_task.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ ├── lv_themes │ │ │ │ ├── lv_theme.c │ │ │ │ ├── lv_theme.h │ │ │ │ ├── lv_theme_empty.c │ │ │ │ ├── lv_theme_empty.h │ │ │ │ ├── lv_theme_material.c │ │ │ │ ├── lv_theme_material.h │ │ │ │ ├── lv_theme_mono.c │ │ │ │ ├── lv_theme_mono.h │ │ │ │ ├── lv_theme_template.c │ │ │ │ ├── lv_theme_template.h │ │ │ │ └── lv_themes.mk │ │ │ ├── lv_widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_chart.c │ │ │ │ ├── lv_chart.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_cont.c │ │ │ │ ├── lv_cont.h │ │ │ │ ├── lv_cpicker.c │ │ │ │ ├── lv_cpicker.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_gauge.c │ │ │ │ ├── lv_gauge.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_imgbtn.c │ │ │ │ ├── lv_imgbtn.h │ │ │ │ ├── lv_keyboard.c │ │ │ │ ├── lv_keyboard.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_led.c │ │ │ │ ├── lv_led.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_linemeter.c │ │ │ │ ├── lv_linemeter.h │ │ │ │ ├── lv_list.c │ │ │ │ ├── lv_list.h │ │ │ │ ├── lv_msgbox.c │ │ │ │ ├── lv_msgbox.h │ │ │ │ ├── lv_objmask.c │ │ │ │ ├── lv_objmask.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_page.c │ │ │ │ ├── lv_page.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_spinbox.c │ │ │ │ ├── lv_spinbox.h │ │ │ │ ├── lv_spinner.c │ │ │ │ ├── lv_spinner.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_tabview.c │ │ │ │ ├── lv_tabview.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ ├── lv_tileview.c │ │ │ │ ├── lv_tileview.h │ │ │ │ ├── lv_widgets.mk │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ └── lvgl.h │ │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── build.py │ │ │ ├── font_1.fnt │ │ │ ├── font_2.fnt │ │ │ ├── font_3.fnt │ │ │ ├── icon.png │ │ │ ├── icon2.png │ │ │ ├── lv_test_assert.c │ │ │ ├── lv_test_assert.h │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_core │ │ │ │ ├── lv_test_core.c │ │ │ │ ├── lv_test_core.h │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_style.c │ │ │ │ └── lv_test_style.h │ │ │ ├── lv_test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_2.c │ │ │ │ └── font_3.c │ │ │ ├── lv_test_main.c │ │ │ ├── lv_test_ref_imgs │ │ │ │ └── lv_test_img32_label_1.png │ │ │ └── lv_test_widgets │ │ │ │ ├── lv_test_label.c │ │ │ │ └── lv_test_label.h │ │ │ └── zephyr │ │ │ └── module.yml │ ├── custom_player │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── custom_player.c │ │ └── custom_player.h │ ├── dialogflow-proto │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── proto-c │ │ │ ├── agent.pb-c.c │ │ │ ├── agent.pb-c.h │ │ │ ├── annotations.pb-c.c │ │ │ ├── annotations.pb-c.h │ │ │ ├── any.pb-c.c │ │ │ ├── any.pb-c.h │ │ │ ├── audio_config.pb-c.c │ │ │ ├── audio_config.pb-c.h │ │ │ ├── code.pb-c.c │ │ │ ├── code.pb-c.h │ │ │ ├── context.pb-c.c │ │ │ ├── context.pb-c.h │ │ │ ├── descriptor.pb-c.c │ │ │ ├── descriptor.pb-c.h │ │ │ ├── document.pb-c.c │ │ │ ├── document.pb-c.h │ │ │ ├── duration.pb-c.c │ │ │ ├── duration.pb-c.h │ │ │ ├── embedded_assistant.pb-c.c │ │ │ ├── embedded_assistant.pb-c.h │ │ │ ├── empty.pb-c.c │ │ │ ├── empty.pb-c.h │ │ │ ├── entity_type.pb-c.c │ │ │ ├── entity_type.pb-c.h │ │ │ ├── error_details.pb-c.c │ │ │ ├── error_details.pb-c.h │ │ │ ├── field_mask.pb-c.c │ │ │ ├── field_mask.pb-c.h │ │ │ ├── http.pb-c.c │ │ │ ├── http.pb-c.h │ │ │ ├── intent.pb-c.c │ │ │ ├── intent.pb-c.h │ │ │ ├── knowledge_base.pb-c.c │ │ │ ├── knowledge_base.pb-c.h │ │ │ ├── latlng.pb-c.c │ │ │ ├── latlng.pb-c.h │ │ │ ├── operations.pb-c.c │ │ │ ├── operations.pb-c.h │ │ │ ├── session.pb-c.c │ │ │ ├── session.pb-c.h │ │ │ ├── session_entity_type.pb-c.c │ │ │ ├── session_entity_type.pb-c.h │ │ │ ├── status.pb-c.c │ │ │ ├── status.pb-c.h │ │ │ ├── struct.pb-c.c │ │ │ ├── struct.pb-c.h │ │ │ ├── webhook.pb-c.c │ │ │ └── webhook.pb-c.h │ │ └── proto │ │ │ └── README.md │ ├── esp-downmix │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── esp_downmix.h │ │ └── lib │ │ │ └── libesp-downmix.a │ ├── esp-ssdp │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── component.mk │ │ ├── include │ │ │ └── ssdp.h │ │ └── lib │ │ │ └── libesp-ssdp.a │ ├── esp_httpd_ota │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── include │ │ │ └── esp_httpd_ota.h │ │ └── src │ │ │ └── esp_httpd_ota.c │ ├── gva-proto │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── proto-c │ │ │ ├── annotations.pb-c.c │ │ │ ├── annotations.pb-c.h │ │ │ ├── descriptor.pb-c.c │ │ │ ├── descriptor.pb-c.h │ │ │ ├── embedded_assistant.pb-c.c │ │ │ ├── embedded_assistant.pb-c.h │ │ │ ├── http.pb-c.c │ │ │ ├── http.pb-c.h │ │ │ ├── latlng.pb-c.c │ │ │ └── latlng.pb-c.h │ │ └── proto │ │ │ └── README.md │ ├── httpc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── component.mk │ │ ├── httpc.c │ │ ├── httpc.h │ │ └── test_host │ │ │ ├── Makefile │ │ │ ├── main.c │ │ │ ├── mbedtls │ │ │ └── esp_debug.h │ │ │ └── sdkconfig.h │ ├── json_parser │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── jsmn │ │ │ ├── include │ │ │ │ └── jsmn-changed.h │ │ │ └── src │ │ │ │ └── jsmn-changed.c │ │ ├── json_parser.c │ │ └── json_parser.h │ ├── media_hal │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── media_hal_playback.c │ │ └── media_hal_playback.h │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── json_utils.c │ │ ├── json_utils.h │ │ ├── network_diagnostics.c │ │ ├── network_diagnostics.h │ │ ├── str_utils.c │ │ ├── str_utils.h │ │ ├── strdup.c │ │ ├── va_button.c │ │ ├── va_button.h │ │ ├── va_diag_cli.c │ │ ├── va_diag_cli.h │ │ ├── va_file_utils.c │ │ ├── va_file_utils.h │ │ ├── va_led.c │ │ ├── va_led.h │ │ ├── va_mem_utils.c │ │ ├── va_mem_utils.h │ │ ├── va_nvs_utils.c │ │ ├── va_nvs_utils.h │ │ ├── va_rb_utils.h │ │ ├── va_time_utils.c │ │ ├── va_time_utils.h │ │ ├── wifi_cli.c │ │ └── wifi_cli.h │ ├── multipart_parser │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── multipart.h │ │ └── src │ │ │ └── multipart.c │ ├── qrcode │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── qrcode.h │ │ └── src │ │ │ ├── qrcode.c │ │ │ ├── qrcodegen.c │ │ │ └── qrcodegen.h │ ├── sh2lib │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── sh2lib.c │ │ └── sh2lib.h │ ├── speech_recog │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── esp_wwe.h │ │ └── lib │ │ │ ├── libc_speech_features.a │ │ │ ├── libdl_lib.a │ │ │ ├── libesp_wwe.a │ │ │ ├── libnn_model.a │ │ │ └── libspeech_recog.a │ ├── streams │ │ ├── CMakeLists.txt │ │ ├── audio_stream.c │ │ ├── audio_stream.h │ │ ├── component.mk │ │ ├── fs_stream │ │ │ ├── component.mk │ │ │ ├── fs_stream.c │ │ │ └── fs_stream.h │ │ ├── hollow_stream │ │ │ ├── hollow_stream.c │ │ │ └── hollow_stream.h │ │ ├── http_stream │ │ │ ├── http_hls.c │ │ │ ├── http_hls.h │ │ │ ├── http_playback_stream.c │ │ │ ├── http_playback_stream.h │ │ │ ├── http_playlist.c │ │ │ ├── http_playlist.h │ │ │ ├── http_stream.c │ │ │ └── http_stream.h │ │ └── i2s_stream │ │ │ ├── i2s_stream.c │ │ │ └── i2s_stream.h │ ├── sys_playback │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── sys_playback.c │ │ └── sys_playback.h │ ├── uuid-gen │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── UUIDGeneration.h │ │ └── src │ │ │ └── UUIDGeneration.c │ └── voice_assistant │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ ├── aia.h │ │ ├── alerts.h │ │ ├── alexa.h │ │ ├── alexa_equalizer_controller.h │ │ ├── alexa_local_config.h │ │ ├── alexa_smart_home.h │ │ ├── audio_player.h │ │ ├── auth_delegate.h │ │ ├── avs_config.h │ │ ├── dialogflow.h │ │ ├── gva.h │ │ ├── playback_controller.h │ │ ├── prompt.h │ │ ├── smart_home.h │ │ ├── speaker.h │ │ ├── speech_recognizer.h │ │ ├── speech_synthesizer.h │ │ ├── tone.h │ │ ├── va_mqtt.h │ │ ├── va_ui.h │ │ ├── voice_assistant.h │ │ └── voice_assistant_app_cb.h │ │ └── lib │ │ ├── libaia.a │ │ ├── libavs.a │ │ ├── libdialogflow.a │ │ └── libgva.a ├── esp_alexa_credentials │ ├── README.md │ └── mfg_config.csv ├── flash_certificates.py ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── app_auth.c │ ├── app_auth.h │ ├── app_main.c │ ├── app_mqtt.c │ ├── app_mqtt.h │ ├── app_va_cb.c │ ├── certs │ │ ├── README.md │ │ └── mfg_config.csv │ └── component.mk ├── partitions.csv ├── partitions_4mb_flash.csv ├── partitions_spiffs.csv ├── patent_disclaimer.txt ├── platformio.ini └── sdkconfig.defaults ├── Blinky-Hello-World ├── CMakeLists.txt ├── Makefile ├── README.md ├── components │ ├── core2forAWS │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── atecc608 │ │ │ ├── atecc608.c │ │ │ └── atecc608.h │ │ ├── axp192 │ │ │ ├── axp192.c │ │ │ ├── axp192.h │ │ │ ├── axp192_i2c.c │ │ │ └── axp192_i2c.h │ │ ├── bm8563 │ │ │ ├── bm8563.c │ │ │ └── bm8563.h │ │ ├── button │ │ │ ├── button.c │ │ │ └── button.h │ │ ├── component.mk │ │ ├── core2forAWS.c │ │ ├── core2forAWS.h │ │ ├── ft6336u │ │ │ ├── ft6336u.c │ │ │ └── ft6336u.h │ │ ├── i2c_bus │ │ │ ├── i2c_device.c │ │ │ └── i2c_device.h │ │ ├── microphone │ │ │ ├── microphone.c │ │ │ └── microphone.h │ │ ├── mpu6886 │ │ │ ├── mpu6886.c │ │ │ └── mpu6886.h │ │ ├── sk6812 │ │ │ ├── sk6812.c │ │ │ └── sk6812.h │ │ ├── speaker │ │ │ ├── speaker.c │ │ │ └── speaker.h │ │ └── tft │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ └── lvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── lv_conf.h │ │ │ └── lvgl │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── main.yml │ │ │ │ ├── merge-to-dev.yml │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ └── ROADMAP.md │ │ │ ├── examples │ │ │ ├── LVGL_Arduino.ino │ │ │ └── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ └── generate_all.py │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── infer_run.sh │ │ │ ├── lv_conf_checker.py │ │ │ └── release │ │ │ │ ├── com.py │ │ │ │ ├── dev.py │ │ │ │ ├── main.py │ │ │ │ ├── proj.py │ │ │ │ └── release.py │ │ │ ├── src │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lv_core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_style_dec.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_style.c │ │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ ├── lv_hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_debug.c │ │ │ │ ├── lv_debug.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_task.c │ │ │ │ ├── lv_task.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ ├── lv_themes │ │ │ │ ├── lv_theme.c │ │ │ │ ├── lv_theme.h │ │ │ │ ├── lv_theme_empty.c │ │ │ │ ├── lv_theme_empty.h │ │ │ │ ├── lv_theme_material.c │ │ │ │ ├── lv_theme_material.h │ │ │ │ ├── lv_theme_mono.c │ │ │ │ ├── lv_theme_mono.h │ │ │ │ ├── lv_theme_template.c │ │ │ │ ├── lv_theme_template.h │ │ │ │ └── lv_themes.mk │ │ │ ├── lv_widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_chart.c │ │ │ │ ├── lv_chart.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_cont.c │ │ │ │ ├── lv_cont.h │ │ │ │ ├── lv_cpicker.c │ │ │ │ ├── lv_cpicker.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_gauge.c │ │ │ │ ├── lv_gauge.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_imgbtn.c │ │ │ │ ├── lv_imgbtn.h │ │ │ │ ├── lv_keyboard.c │ │ │ │ ├── lv_keyboard.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_led.c │ │ │ │ ├── lv_led.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_linemeter.c │ │ │ │ ├── lv_linemeter.h │ │ │ │ ├── lv_list.c │ │ │ │ ├── lv_list.h │ │ │ │ ├── lv_msgbox.c │ │ │ │ ├── lv_msgbox.h │ │ │ │ ├── lv_objmask.c │ │ │ │ ├── lv_objmask.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_page.c │ │ │ │ ├── lv_page.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_spinbox.c │ │ │ │ ├── lv_spinbox.h │ │ │ │ ├── lv_spinner.c │ │ │ │ ├── lv_spinner.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_tabview.c │ │ │ │ ├── lv_tabview.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ ├── lv_tileview.c │ │ │ │ ├── lv_tileview.h │ │ │ │ ├── lv_widgets.mk │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ └── lvgl.h │ │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── build.py │ │ │ ├── font_1.fnt │ │ │ ├── font_2.fnt │ │ │ ├── font_3.fnt │ │ │ ├── icon.png │ │ │ ├── icon2.png │ │ │ ├── lv_test_assert.c │ │ │ ├── lv_test_assert.h │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_core │ │ │ │ ├── lv_test_core.c │ │ │ │ ├── lv_test_core.h │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_style.c │ │ │ │ └── lv_test_style.h │ │ │ ├── lv_test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_2.c │ │ │ │ └── font_3.c │ │ │ ├── lv_test_main.c │ │ │ ├── lv_test_ref_imgs │ │ │ │ └── lv_test_img32_label_1.png │ │ │ └── lv_test_widgets │ │ │ │ ├── lv_test_label.c │ │ │ │ └── lv_test_label.h │ │ │ └── zephyr │ │ │ └── module.yml │ ├── esp-aws-iot │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aws-iot-device-sdk-embedded-C │ │ │ ├── .github │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CppUTestMakefileWorker.mk │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NOTICE.txt │ │ │ ├── PortingGuide.md │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ ├── architecture.png │ │ │ │ ├── architecture.txt │ │ │ │ ├── config │ │ │ │ │ ├── common │ │ │ │ │ ├── html │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── layout_library.xml │ │ │ │ │ ├── layout_main.xml │ │ │ │ │ ├── main │ │ │ │ │ └── mqtt │ │ │ │ └── lib │ │ │ │ │ └── mqtt.txt │ │ │ ├── external_libs │ │ │ │ └── jsmn │ │ │ │ │ ├── jsmn.c │ │ │ │ │ └── jsmn.h │ │ │ ├── filterGcov.sh │ │ │ ├── include │ │ │ │ ├── aws_iot_error.h │ │ │ │ ├── aws_iot_jobs_interface.h │ │ │ │ ├── aws_iot_jobs_json.h │ │ │ │ ├── aws_iot_jobs_topics.h │ │ │ │ ├── aws_iot_jobs_types.h │ │ │ │ ├── aws_iot_json_utils.h │ │ │ │ ├── aws_iot_log.h │ │ │ │ ├── aws_iot_mqtt_client.h │ │ │ │ ├── aws_iot_mqtt_client_common_internal.h │ │ │ │ ├── aws_iot_mqtt_client_interface.h │ │ │ │ ├── aws_iot_shadow_actions.h │ │ │ │ ├── aws_iot_shadow_interface.h │ │ │ │ ├── aws_iot_shadow_json.h │ │ │ │ ├── aws_iot_shadow_json_data.h │ │ │ │ ├── aws_iot_shadow_key.h │ │ │ │ ├── aws_iot_shadow_records.h │ │ │ │ ├── aws_iot_version.h │ │ │ │ ├── network_interface.h │ │ │ │ ├── threads_interface.h │ │ │ │ └── timer_interface.h │ │ │ ├── platform │ │ │ │ └── linux │ │ │ │ │ ├── common │ │ │ │ │ ├── timer.c │ │ │ │ │ └── timer_platform.h │ │ │ │ │ ├── mbedtls │ │ │ │ │ ├── network_mbedtls_wrapper.c │ │ │ │ │ └── network_platform.h │ │ │ │ │ └── pthread │ │ │ │ │ ├── threads_platform.h │ │ │ │ │ └── threads_pthread_wrapper.c │ │ │ ├── samples │ │ │ │ ├── README.md │ │ │ │ └── linux │ │ │ │ │ ├── jobs_sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aws_iot_config.h │ │ │ │ │ └── jobs_sample.c │ │ │ │ │ ├── shadow_sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aws_iot_config.h │ │ │ │ │ └── shadow_sample.c │ │ │ │ │ ├── shadow_sample_console_echo │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aws_iot_config.h │ │ │ │ │ └── shadow_console_echo.c │ │ │ │ │ ├── subscribe_publish_library_sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aws_iot_config.h │ │ │ │ │ └── subscribe_publish_library_sample.c │ │ │ │ │ └── subscribe_publish_sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aws_iot_config.h │ │ │ │ │ └── subscribe_publish_sample.c │ │ │ ├── src │ │ │ │ ├── aws_iot_jobs_interface.c │ │ │ │ ├── aws_iot_jobs_json.c │ │ │ │ ├── aws_iot_jobs_topics.c │ │ │ │ ├── aws_iot_jobs_types.c │ │ │ │ ├── aws_iot_json_utils.c │ │ │ │ ├── aws_iot_mqtt_client.c │ │ │ │ ├── aws_iot_mqtt_client_common_internal.c │ │ │ │ ├── aws_iot_mqtt_client_connect.c │ │ │ │ ├── aws_iot_mqtt_client_publish.c │ │ │ │ ├── aws_iot_mqtt_client_subscribe.c │ │ │ │ ├── aws_iot_mqtt_client_unsubscribe.c │ │ │ │ ├── aws_iot_mqtt_client_yield.c │ │ │ │ ├── aws_iot_shadow.c │ │ │ │ ├── aws_iot_shadow_actions.c │ │ │ │ ├── aws_iot_shadow_json.c │ │ │ │ └── aws_iot_shadow_records.c │ │ │ └── tests │ │ │ │ ├── README.md │ │ │ │ ├── integration │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ │ ├── aws_iot_config.h │ │ │ │ │ ├── aws_iot_integ_tests_config.h │ │ │ │ │ └── aws_iot_test_integration_common.h │ │ │ │ ├── multithreadingTest │ │ │ │ │ └── aws_iot_test_multithreading_validation.c │ │ │ │ └── src │ │ │ │ │ ├── aws_iot_test_auto_reconnect.c │ │ │ │ │ ├── aws_iot_test_basic_connectivity.c │ │ │ │ │ ├── aws_iot_test_integration_runner.c │ │ │ │ │ ├── aws_iot_test_jobs_api.c │ │ │ │ │ └── aws_iot_test_multiple_clients.c │ │ │ │ └── unit │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ ├── aws_iot_config.h │ │ │ │ ├── aws_iot_tests_unit_helper_functions.h │ │ │ │ └── aws_iot_tests_unit_shadow_helper.h │ │ │ │ ├── src │ │ │ │ ├── aws_iot_tests_unit_common_tests.cpp │ │ │ │ ├── aws_iot_tests_unit_common_tests_helper.c │ │ │ │ ├── aws_iot_tests_unit_connect.cpp │ │ │ │ ├── aws_iot_tests_unit_connect_helper.c │ │ │ │ ├── aws_iot_tests_unit_disconnect.cpp │ │ │ │ ├── aws_iot_tests_unit_disconnect_helper.c │ │ │ │ ├── aws_iot_tests_unit_helper_functions.c │ │ │ │ ├── aws_iot_tests_unit_jobs.cpp │ │ │ │ ├── aws_iot_tests_unit_jobs_interface.c │ │ │ │ ├── aws_iot_tests_unit_jobs_json.c │ │ │ │ ├── aws_iot_tests_unit_jobs_topics.c │ │ │ │ ├── aws_iot_tests_unit_jobs_types.c │ │ │ │ ├── aws_iot_tests_unit_json_utils.cpp │ │ │ │ ├── aws_iot_tests_unit_json_utils_helper.c │ │ │ │ ├── aws_iot_tests_unit_publish.cpp │ │ │ │ ├── aws_iot_tests_unit_publish_helper.c │ │ │ │ ├── aws_iot_tests_unit_runner.cpp │ │ │ │ ├── aws_iot_tests_unit_shadow_action.cpp │ │ │ │ ├── aws_iot_tests_unit_shadow_action_helper.c │ │ │ │ ├── aws_iot_tests_unit_shadow_delta.cpp │ │ │ │ ├── aws_iot_tests_unit_shadow_delta_helper.c │ │ │ │ ├── aws_iot_tests_unit_shadow_json_builder.cpp │ │ │ │ ├── aws_iot_tests_unit_shadow_json_builder_helper.c │ │ │ │ ├── aws_iot_tests_unit_shadow_null_fields.cpp │ │ │ │ ├── aws_iot_tests_unit_shadow_null_fields_helper.c │ │ │ │ ├── aws_iot_tests_unit_subscribe.cpp │ │ │ │ ├── aws_iot_tests_unit_subscribe_helper.c │ │ │ │ ├── aws_iot_tests_unit_unsubscribe.cpp │ │ │ │ ├── aws_iot_tests_unit_unsubscribe_helper.c │ │ │ │ ├── aws_iot_tests_unit_yield.cpp │ │ │ │ └── aws_iot_tests_unit_yield_helper.c │ │ │ │ └── tls_mock │ │ │ │ ├── aws_iot_tests_unit_mock_tls.c │ │ │ │ ├── aws_iot_tests_unit_mock_tls_params.c │ │ │ │ ├── aws_iot_tests_unit_mock_tls_params.h │ │ │ │ └── network_platform.h │ │ ├── component.mk │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── subscribe_publish │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig.projbuild │ │ │ │ │ ├── certs │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── component.mk │ │ │ │ │ └── subscribe_publish_sample.c │ │ │ │ ├── sdkconfig.ci │ │ │ │ └── sdkconfig.defaults │ │ │ └── thing_shadow │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.projbuild │ │ │ │ ├── certs │ │ │ │ │ └── README.md │ │ │ │ ├── component.mk │ │ │ │ └── thing_shadow_sample.c │ │ │ │ ├── sdkconfig.ci │ │ │ │ └── sdkconfig.defaults │ │ └── port │ │ │ ├── include │ │ │ ├── aws_iot_config.h │ │ │ ├── aws_iot_log.h │ │ │ ├── network_platform.h │ │ │ ├── threads_platform.h │ │ │ └── timer_platform.h │ │ │ ├── network_mbedtls_wrapper.c │ │ │ ├── threads_freertos.c │ │ │ └── timer.c │ └── esp-cryptoauthlib │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── component.mk │ │ ├── cryptoauthlib │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── README.md │ │ │ ├── api_206a │ │ │ │ ├── api_206a.c │ │ │ │ └── api_206a.h │ │ │ ├── ip_protection │ │ │ │ ├── README.md │ │ │ │ ├── symmetric_authentication.c │ │ │ │ └── symmetric_authentication.h │ │ │ ├── pkcs11 │ │ │ │ ├── README.md │ │ │ │ ├── cryptoauthlib.conf.in │ │ │ │ ├── example_cert_chain.c │ │ │ │ ├── example_cert_chain.h │ │ │ │ ├── example_pkcs11_config.c │ │ │ │ ├── slot.conf.tmpl │ │ │ │ └── trust_pkcs11_config.c │ │ │ ├── secure_boot │ │ │ │ ├── README.md │ │ │ │ ├── io_protection_key.h │ │ │ │ ├── secure_boot.c │ │ │ │ ├── secure_boot.h │ │ │ │ └── secure_boot_memory.h │ │ │ └── tng │ │ │ │ ├── readme.md │ │ │ │ ├── tflxtls_cert_def_4_device.c │ │ │ │ ├── tflxtls_cert_def_4_device.h │ │ │ │ ├── tng_atca.c │ │ │ │ ├── tng_atca.h │ │ │ │ ├── tng_atcacert_client.c │ │ │ │ ├── tng_atcacert_client.h │ │ │ │ ├── tng_root_cert.c │ │ │ │ ├── tng_root_cert.h │ │ │ │ ├── tnglora_cert_def_1_signer.c │ │ │ │ ├── tnglora_cert_def_1_signer.h │ │ │ │ ├── tnglora_cert_def_2_device.c │ │ │ │ ├── tnglora_cert_def_2_device.h │ │ │ │ ├── tnglora_cert_def_4_device.c │ │ │ │ ├── tnglora_cert_def_4_device.h │ │ │ │ ├── tngtls_cert_def_1_signer.c │ │ │ │ ├── tngtls_cert_def_1_signer.h │ │ │ │ ├── tngtls_cert_def_2_device.c │ │ │ │ ├── tngtls_cert_def_2_device.h │ │ │ │ ├── tngtls_cert_def_3_device.c │ │ │ │ └── tngtls_cert_def_3_device.h │ │ ├── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── atca_basic.c │ │ │ ├── atca_basic.h │ │ │ ├── atca_bool.h │ │ │ ├── atca_cfgs.c │ │ │ ├── atca_cfgs.h │ │ │ ├── atca_compiler.h │ │ │ ├── atca_config.h.in │ │ │ ├── atca_debug.c │ │ │ ├── atca_debug.h │ │ │ ├── atca_device.c │ │ │ ├── atca_device.h │ │ │ ├── atca_devtypes.h │ │ │ ├── atca_helpers.c │ │ │ ├── atca_helpers.h │ │ │ ├── atca_iface.c │ │ │ ├── atca_iface.h │ │ │ ├── atca_status.h │ │ │ ├── atca_utils_sizes.c │ │ │ ├── atca_version.h │ │ │ ├── atcacert │ │ │ │ ├── atcacert.h │ │ │ │ ├── atcacert_client.c │ │ │ │ ├── atcacert_client.h │ │ │ │ ├── atcacert_date.c │ │ │ │ ├── atcacert_date.h │ │ │ │ ├── atcacert_def.c │ │ │ │ ├── atcacert_def.h │ │ │ │ ├── atcacert_der.c │ │ │ │ ├── atcacert_der.h │ │ │ │ ├── atcacert_host_hw.c │ │ │ │ ├── atcacert_host_hw.h │ │ │ │ ├── atcacert_host_sw.c │ │ │ │ ├── atcacert_host_sw.h │ │ │ │ ├── atcacert_pem.c │ │ │ │ └── atcacert_pem.h │ │ │ ├── calib │ │ │ │ ├── README.md │ │ │ │ ├── calib_aes.c │ │ │ │ ├── calib_aes_gcm.c │ │ │ │ ├── calib_aes_gcm.h │ │ │ │ ├── calib_basic.c │ │ │ │ ├── calib_basic.h │ │ │ │ ├── calib_checkmac.c │ │ │ │ ├── calib_command.c │ │ │ │ ├── calib_command.h │ │ │ │ ├── calib_counter.c │ │ │ │ ├── calib_derivekey.c │ │ │ │ ├── calib_ecdh.c │ │ │ │ ├── calib_execution.c │ │ │ │ ├── calib_execution.h │ │ │ │ ├── calib_gendig.c │ │ │ │ ├── calib_genkey.c │ │ │ │ ├── calib_helpers.c │ │ │ │ ├── calib_hmac.c │ │ │ │ ├── calib_info.c │ │ │ │ ├── calib_kdf.c │ │ │ │ ├── calib_lock.c │ │ │ │ ├── calib_mac.c │ │ │ │ ├── calib_nonce.c │ │ │ │ ├── calib_privwrite.c │ │ │ │ ├── calib_random.c │ │ │ │ ├── calib_read.c │ │ │ │ ├── calib_secureboot.c │ │ │ │ ├── calib_selftest.c │ │ │ │ ├── calib_sha.c │ │ │ │ ├── calib_sign.c │ │ │ │ ├── calib_updateextra.c │ │ │ │ ├── calib_verify.c │ │ │ │ └── calib_write.c │ │ │ ├── crypto │ │ │ │ ├── README.md │ │ │ │ ├── atca_crypto_hw_aes.h │ │ │ │ ├── atca_crypto_hw_aes_cbc.c │ │ │ │ ├── atca_crypto_hw_aes_cbcmac.c │ │ │ │ ├── atca_crypto_hw_aes_ccm.c │ │ │ │ ├── atca_crypto_hw_aes_cmac.c │ │ │ │ ├── atca_crypto_hw_aes_ctr.c │ │ │ │ ├── atca_crypto_pbkdf2.c │ │ │ │ ├── atca_crypto_sw.h │ │ │ │ ├── atca_crypto_sw_ecdsa.c │ │ │ │ ├── atca_crypto_sw_ecdsa.h │ │ │ │ ├── atca_crypto_sw_rand.c │ │ │ │ ├── atca_crypto_sw_rand.h │ │ │ │ ├── atca_crypto_sw_sha1.c │ │ │ │ ├── atca_crypto_sw_sha1.h │ │ │ │ ├── atca_crypto_sw_sha2.c │ │ │ │ ├── atca_crypto_sw_sha2.h │ │ │ │ └── hashes │ │ │ │ │ ├── sha1_routines.c │ │ │ │ │ ├── sha1_routines.h │ │ │ │ │ ├── sha2_routines.c │ │ │ │ │ └── sha2_routines.h │ │ │ ├── cryptoauthlib.h │ │ │ ├── hal │ │ │ │ ├── 90-cryptohid.rules │ │ │ │ ├── README.md │ │ │ │ ├── atca_hal.c │ │ │ │ ├── atca_hal.h │ │ │ │ ├── atca_start_config.h │ │ │ │ ├── atca_start_iface.h │ │ │ │ ├── hal_all_platforms_kit_hidapi.c │ │ │ │ ├── hal_freertos.c │ │ │ │ ├── hal_gpio_harmony.c │ │ │ │ ├── hal_gpio_harmony.h │ │ │ │ ├── hal_i2c_harmony.c │ │ │ │ ├── hal_i2c_harmony.c.orig │ │ │ │ ├── hal_i2c_start.c │ │ │ │ ├── hal_i2c_start.h │ │ │ │ ├── hal_kit_bridge.c │ │ │ │ ├── hal_kit_bridge.h │ │ │ │ ├── hal_linux.c │ │ │ │ ├── hal_linux_i2c_userspace.c │ │ │ │ ├── hal_linux_spi_userspace.c │ │ │ │ ├── hal_sam0_i2c_asf.c │ │ │ │ ├── hal_sam0_i2c_asf.h │ │ │ │ ├── hal_sam_i2c_asf.c │ │ │ │ ├── hal_sam_i2c_asf.h │ │ │ │ ├── hal_sam_timer_asf.c │ │ │ │ ├── hal_spi_harmony.c │ │ │ │ ├── hal_swi_bitbang_harmony.c │ │ │ │ ├── hal_swi_uart.c │ │ │ │ ├── hal_swi_uart.h │ │ │ │ ├── hal_timer_start.c │ │ │ │ ├── hal_uart_harmony.c │ │ │ │ ├── hal_uc3_i2c_asf.c │ │ │ │ ├── hal_uc3_i2c_asf.h │ │ │ │ ├── hal_uc3_timer_asf.c │ │ │ │ ├── hal_windows.c │ │ │ │ ├── kit_phy.h │ │ │ │ ├── kit_protocol.c │ │ │ │ ├── kit_protocol.h │ │ │ │ ├── swi_uart_samd21_asf.c │ │ │ │ ├── swi_uart_samd21_asf.h │ │ │ │ ├── swi_uart_start.c │ │ │ │ └── swi_uart_start.h │ │ │ ├── host │ │ │ │ ├── atca_host.c │ │ │ │ └── atca_host.h │ │ │ ├── jwt │ │ │ │ ├── atca_jwt.c │ │ │ │ └── atca_jwt.h │ │ │ ├── mbedtls │ │ │ │ ├── README.md │ │ │ │ ├── atca_mbedtls_ecdh.c │ │ │ │ ├── atca_mbedtls_ecdsa.c │ │ │ │ ├── atca_mbedtls_wrap.c │ │ │ │ └── atca_mbedtls_wrap.h │ │ │ ├── openssl │ │ │ │ ├── README.md │ │ │ │ └── atca_openssl_interface.c │ │ │ ├── pkcs11 │ │ │ │ ├── cryptoki.h │ │ │ │ ├── pkcs11.h │ │ │ │ ├── pkcs11_attrib.c │ │ │ │ ├── pkcs11_attrib.h │ │ │ │ ├── pkcs11_cert.c │ │ │ │ ├── pkcs11_cert.h │ │ │ │ ├── pkcs11_config.c │ │ │ │ ├── pkcs11_config.h.in │ │ │ │ ├── pkcs11_debug.c │ │ │ │ ├── pkcs11_debug.h │ │ │ │ ├── pkcs11_digest.c │ │ │ │ ├── pkcs11_digest.h │ │ │ │ ├── pkcs11_encrypt.c │ │ │ │ ├── pkcs11_encrypt.h │ │ │ │ ├── pkcs11_find.c │ │ │ │ ├── pkcs11_find.h │ │ │ │ ├── pkcs11_info.c │ │ │ │ ├── pkcs11_info.h │ │ │ │ ├── pkcs11_init.c │ │ │ │ ├── pkcs11_init.h │ │ │ │ ├── pkcs11_key.c │ │ │ │ ├── pkcs11_key.h │ │ │ │ ├── pkcs11_main.c │ │ │ │ ├── pkcs11_mech.c │ │ │ │ ├── pkcs11_mech.h │ │ │ │ ├── pkcs11_object.c │ │ │ │ ├── pkcs11_object.h │ │ │ │ ├── pkcs11_os.c │ │ │ │ ├── pkcs11_os.h │ │ │ │ ├── pkcs11_session.c │ │ │ │ ├── pkcs11_session.h │ │ │ │ ├── pkcs11_signature.c │ │ │ │ ├── pkcs11_signature.h │ │ │ │ ├── pkcs11_slot.c │ │ │ │ ├── pkcs11_slot.h │ │ │ │ ├── pkcs11_token.c │ │ │ │ ├── pkcs11_token.h │ │ │ │ ├── pkcs11_util.c │ │ │ │ ├── pkcs11_util.h │ │ │ │ ├── pkcs11f.h │ │ │ │ └── pkcs11t.h │ │ │ └── wolfssl │ │ │ │ └── atca_wolfssl_interface.c │ │ ├── third_party │ │ │ ├── CMakeLists-mbedtls.txt.in │ │ │ ├── CMakeLists-wolfssl.txt.in │ │ │ ├── hal │ │ │ │ └── esp32 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── hal_core2foraws.c │ │ │ │ │ ├── hal_esp32_i2c.c │ │ │ │ │ └── hal_esp32_timer.c │ │ │ ├── hidapi │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ ├── libusb │ │ │ │ │ └── hid.c │ │ │ │ ├── linux │ │ │ │ │ └── hid.c │ │ │ │ ├── mac │ │ │ │ │ └── hid.c │ │ │ │ └── windows │ │ │ │ │ └── hid.c │ │ │ └── unity │ │ │ │ ├── unity.c │ │ │ │ ├── unity.h │ │ │ │ ├── unity_fixture.c │ │ │ │ ├── unity_fixture.h │ │ │ │ ├── unity_fixture_internals.h │ │ │ │ ├── unity_internals.h │ │ │ │ ├── unity_license.txt │ │ │ │ ├── unity_memory.c │ │ │ │ ├── unity_memory.h │ │ │ │ └── unity_to_junit.py │ │ └── version.txt │ │ ├── esp_cryptoauth_utility │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helper_scripts │ │ │ ├── __init__.py │ │ │ ├── cert2certdef.py │ │ │ ├── cert_sign.py │ │ │ ├── manifest.py │ │ │ └── serial.py │ │ ├── output_files │ │ │ └── README.md │ │ ├── requirements.txt │ │ ├── sample_bins │ │ │ └── secure_cert_mfg.bin │ │ ├── sample_certs │ │ │ ├── sample_signer_cert.pem │ │ │ └── sample_signer_key.pem │ │ └── secure_cert_mfg.py │ │ ├── generate_component.sh │ │ └── port │ │ ├── atca_cfgs_port.c │ │ └── atca_config.h ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── blink.c │ ├── certs │ │ ├── README.md │ │ └── aws-root-ca.pem │ ├── includes │ │ ├── blink.h │ │ ├── ui.h │ │ └── wifi.h │ ├── main.c │ ├── ui.c │ └── wifi.c ├── partitions_16MB.csv ├── platformio.ini ├── register_thing.py ├── sdkconfig.defaults └── utilities │ ├── AWS_IoT_registration_helper │ ├── output_files │ │ └── README.md │ ├── registration_helper.py │ └── requirements.txt │ └── trustplatform │ ├── MicrochipEncryptionUtility.exe │ ├── README.md │ ├── TrustnGO │ ├── Microchip_manifest_handler.py │ ├── README.md │ ├── TNGTLS_aws_connect.ipynb │ ├── aws_trust.ui │ ├── gui_aws.py │ ├── helper_aws.py │ ├── logo.png │ └── shield.ico │ ├── assets │ ├── Factory_Program.X │ │ ├── CryptoAuth_Trust_Platform.hex │ │ ├── Makefile │ │ └── nbproject │ │ │ ├── Makefile-genesis.properties │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ ├── configurations.xml │ │ │ └── private.xml │ │ │ └── project.xml │ ├── dependencies │ │ ├── README.md │ │ └── common │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── config_structs.h │ │ │ └── host_rand_number.c │ ├── notebook │ │ └── img │ │ │ └── kerner_status.png │ ├── python │ │ ├── certs_handler │ │ │ ├── __init__.py │ │ │ ├── certs_handler.py │ │ │ ├── create_cert_defs.py │ │ │ ├── create_certs_common.py │ │ │ ├── create_device_template.py │ │ │ ├── create_root.py │ │ │ ├── create_signer.py │ │ │ ├── create_signer_csr.py │ │ │ ├── ext_builder.py │ │ │ ├── timefix_backend.py │ │ │ └── x509_find_elements.py │ │ ├── manifest_helper │ │ │ ├── __init__.py │ │ │ ├── manifest_helper.py │ │ │ ├── tflx_manifest_helper.py │ │ │ └── tng_manifest_helper.py │ │ ├── requirements_helper │ │ │ ├── __init__.py │ │ │ └── requirements_helper.py │ │ └── trustplatform │ │ │ ├── __init__.py │ │ │ ├── common_helper.py │ │ │ ├── path_helper.py │ │ │ ├── program_helper.py │ │ │ └── sys_helper.py │ └── requirements.txt │ ├── docs │ ├── ATECC608A_TFLXTLS_datasheet.pdf │ ├── ATECC608A_TNGLORA_datasheet.pdf │ ├── ATECC608A_TNGTLS_datasheet.pdf │ ├── ATECC608A_trust_development_board_userguide.pdf │ ├── ATECC608_compressed_certificate_definition.pdf │ ├── AWS_test_account_credentials.csv │ ├── Azure_iot_hub_details.csv │ ├── CryptoAuth_trustplatform_userguide.pdf │ ├── GCP_test_account_credentials.csv │ ├── TrustFLEX_guide_AWS_demo_account_setup.pdf │ ├── TrustFLEX_guide_Azure_demo_account_setup.pdf │ ├── TrustFLEX_guide_GCP_connect.pdf │ ├── TrustFLEX_guide_GCP_demo_account_setup.pdf │ ├── TrustFLEX_guide_IP_protection.pdf │ ├── TrustFLEX_guide_accessory_asym_authentication.pdf │ ├── TrustFLEX_guide_accessory_authentication.pdf │ ├── TrustFLEX_guide_custom_PKI_AWS.pdf │ ├── TrustFLEX_guide_custom_PKI_Azure.pdf │ ├── TrustFLEX_guide_firmware_validation.pdf │ ├── TrustFLEX_guide_public_key_rotation.pdf │ ├── TrustFLEX_guide_secret_exchange_process.pdf │ ├── TrustPlatform_manifest_file_format_2019-09-26_A.pdf │ ├── TrustnGO_guide_AWS_connect.pdf │ ├── TrustnGO_guide_Azure_connect.pdf │ ├── TrustnGO_guide_GCP_connect.pdf │ ├── aws-zero-touch-full-setup-cn.yaml │ ├── aws-zero-touch-full-setup.yaml │ └── deprecated_cloud_project_docs │ │ ├── TrustFLEX_guide_GCP_connect.pdf │ │ ├── TrustFLEX_guide_custom_PKI_AWS.pdf │ │ ├── TrustFLEX_guide_custom_PKI_Azure.pdf │ │ ├── TrustnGO_guide_AWS_connect.pdf │ │ └── TrustnGO_guide_GCP_connect.pdf │ ├── license.txt │ └── start_here.html ├── Factory-Firmware ├── CMakeLists.txt ├── LICENSE.md ├── Makefile ├── README.md ├── components │ ├── core2forAWS │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── atecc608 │ │ │ ├── atecc608.c │ │ │ └── atecc608.h │ │ ├── axp192 │ │ │ ├── axp192.c │ │ │ ├── axp192.h │ │ │ ├── axp192_i2c.c │ │ │ └── axp192_i2c.h │ │ ├── bm8563 │ │ │ ├── bm8563.c │ │ │ └── bm8563.h │ │ ├── button │ │ │ ├── button.c │ │ │ └── button.h │ │ ├── component.mk │ │ ├── core2forAWS.c │ │ ├── core2forAWS.h │ │ ├── ft6336u │ │ │ ├── ft6336u.c │ │ │ └── ft6336u.h │ │ ├── i2c_bus │ │ │ ├── i2c_device.c │ │ │ └── i2c_device.h │ │ ├── microphone │ │ │ ├── microphone.c │ │ │ └── microphone.h │ │ ├── mpu6886 │ │ │ ├── mpu6886.c │ │ │ └── mpu6886.h │ │ ├── sk6812 │ │ │ ├── sk6812.c │ │ │ └── sk6812.h │ │ ├── speaker │ │ │ ├── speaker.c │ │ │ └── speaker.h │ │ └── tft │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ └── lvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── lv_conf.h │ │ │ └── lvgl │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── main.yml │ │ │ │ ├── merge-to-dev.yml │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ └── ROADMAP.md │ │ │ ├── examples │ │ │ ├── LVGL_Arduino.ino │ │ │ └── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ └── generate_all.py │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── infer_run.sh │ │ │ ├── lv_conf_checker.py │ │ │ └── release │ │ │ │ ├── com.py │ │ │ │ ├── dev.py │ │ │ │ ├── main.py │ │ │ │ ├── proj.py │ │ │ │ └── release.py │ │ │ ├── src │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lv_core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_style_dec.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_style.c │ │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ ├── lv_hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_debug.c │ │ │ │ ├── lv_debug.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_task.c │ │ │ │ ├── lv_task.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ ├── lv_themes │ │ │ │ ├── lv_theme.c │ │ │ │ ├── lv_theme.h │ │ │ │ ├── lv_theme_empty.c │ │ │ │ ├── lv_theme_empty.h │ │ │ │ ├── lv_theme_material.c │ │ │ │ ├── lv_theme_material.h │ │ │ │ ├── lv_theme_mono.c │ │ │ │ ├── lv_theme_mono.h │ │ │ │ ├── lv_theme_template.c │ │ │ │ ├── lv_theme_template.h │ │ │ │ └── lv_themes.mk │ │ │ ├── lv_widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_chart.c │ │ │ │ ├── lv_chart.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_cont.c │ │ │ │ ├── lv_cont.h │ │ │ │ ├── lv_cpicker.c │ │ │ │ ├── lv_cpicker.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_gauge.c │ │ │ │ ├── lv_gauge.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_imgbtn.c │ │ │ │ ├── lv_imgbtn.h │ │ │ │ ├── lv_keyboard.c │ │ │ │ ├── lv_keyboard.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_led.c │ │ │ │ ├── lv_led.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_linemeter.c │ │ │ │ ├── lv_linemeter.h │ │ │ │ ├── lv_list.c │ │ │ │ ├── lv_list.h │ │ │ │ ├── lv_msgbox.c │ │ │ │ ├── lv_msgbox.h │ │ │ │ ├── lv_objmask.c │ │ │ │ ├── lv_objmask.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_page.c │ │ │ │ ├── lv_page.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_spinbox.c │ │ │ │ ├── lv_spinbox.h │ │ │ │ ├── lv_spinner.c │ │ │ │ ├── lv_spinner.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_tabview.c │ │ │ │ ├── lv_tabview.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ ├── lv_tileview.c │ │ │ │ ├── lv_tileview.h │ │ │ │ ├── lv_widgets.mk │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ └── lvgl.h │ │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── build.py │ │ │ ├── font_1.fnt │ │ │ ├── font_2.fnt │ │ │ ├── font_3.fnt │ │ │ ├── icon.png │ │ │ ├── icon2.png │ │ │ ├── lv_test_assert.c │ │ │ ├── lv_test_assert.h │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_core │ │ │ │ ├── lv_test_core.c │ │ │ │ ├── lv_test_core.h │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_style.c │ │ │ │ └── lv_test_style.h │ │ │ ├── lv_test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_2.c │ │ │ │ └── font_3.c │ │ │ ├── lv_test_main.c │ │ │ ├── lv_test_ref_imgs │ │ │ │ └── lv_test_img32_label_1.png │ │ │ └── lv_test_widgets │ │ │ │ ├── lv_test_label.c │ │ │ │ └── lv_test_label.h │ │ │ └── zephyr │ │ │ └── module.yml │ ├── esp-cryptoauthlib │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── component.mk │ │ ├── cryptoauthlib │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── README.md │ │ │ │ ├── api_206a │ │ │ │ │ ├── api_206a.c │ │ │ │ │ └── api_206a.h │ │ │ │ ├── ip_protection │ │ │ │ │ ├── README.md │ │ │ │ │ ├── symmetric_authentication.c │ │ │ │ │ └── symmetric_authentication.h │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cryptoauthlib.conf.in │ │ │ │ │ ├── example_cert_chain.c │ │ │ │ │ ├── example_cert_chain.h │ │ │ │ │ ├── example_pkcs11_config.c │ │ │ │ │ ├── slot.conf.tmpl │ │ │ │ │ └── trust_pkcs11_config.c │ │ │ │ ├── secure_boot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── io_protection_key.h │ │ │ │ │ ├── secure_boot.c │ │ │ │ │ ├── secure_boot.h │ │ │ │ │ └── secure_boot_memory.h │ │ │ │ └── tng │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── tflxtls_cert_def_4_device.c │ │ │ │ │ ├── tflxtls_cert_def_4_device.h │ │ │ │ │ ├── tng_atca.c │ │ │ │ │ ├── tng_atca.h │ │ │ │ │ ├── tng_atcacert_client.c │ │ │ │ │ ├── tng_atcacert_client.h │ │ │ │ │ ├── tng_root_cert.c │ │ │ │ │ ├── tng_root_cert.h │ │ │ │ │ ├── tnglora_cert_def_1_signer.c │ │ │ │ │ ├── tnglora_cert_def_1_signer.h │ │ │ │ │ ├── tnglora_cert_def_2_device.c │ │ │ │ │ ├── tnglora_cert_def_2_device.h │ │ │ │ │ ├── tnglora_cert_def_4_device.c │ │ │ │ │ ├── tnglora_cert_def_4_device.h │ │ │ │ │ ├── tngtls_cert_def_1_signer.c │ │ │ │ │ ├── tngtls_cert_def_1_signer.h │ │ │ │ │ ├── tngtls_cert_def_2_device.c │ │ │ │ │ ├── tngtls_cert_def_2_device.h │ │ │ │ │ ├── tngtls_cert_def_3_device.c │ │ │ │ │ └── tngtls_cert_def_3_device.h │ │ │ ├── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── atca_basic.c │ │ │ │ ├── atca_basic.h │ │ │ │ ├── atca_bool.h │ │ │ │ ├── atca_cfgs.c │ │ │ │ ├── atca_cfgs.h │ │ │ │ ├── atca_compiler.h │ │ │ │ ├── atca_config.h.in │ │ │ │ ├── atca_debug.c │ │ │ │ ├── atca_debug.h │ │ │ │ ├── atca_device.c │ │ │ │ ├── atca_device.h │ │ │ │ ├── atca_devtypes.h │ │ │ │ ├── atca_helpers.c │ │ │ │ ├── atca_helpers.h │ │ │ │ ├── atca_iface.c │ │ │ │ ├── atca_iface.h │ │ │ │ ├── atca_status.h │ │ │ │ ├── atca_utils_sizes.c │ │ │ │ ├── atca_version.h │ │ │ │ ├── atcacert │ │ │ │ │ ├── atcacert.h │ │ │ │ │ ├── atcacert_client.c │ │ │ │ │ ├── atcacert_client.h │ │ │ │ │ ├── atcacert_date.c │ │ │ │ │ ├── atcacert_date.h │ │ │ │ │ ├── atcacert_def.c │ │ │ │ │ ├── atcacert_def.h │ │ │ │ │ ├── atcacert_der.c │ │ │ │ │ ├── atcacert_der.h │ │ │ │ │ ├── atcacert_host_hw.c │ │ │ │ │ ├── atcacert_host_hw.h │ │ │ │ │ ├── atcacert_host_sw.c │ │ │ │ │ ├── atcacert_host_sw.h │ │ │ │ │ ├── atcacert_pem.c │ │ │ │ │ └── atcacert_pem.h │ │ │ │ ├── calib │ │ │ │ │ ├── README.md │ │ │ │ │ ├── calib_aes.c │ │ │ │ │ ├── calib_aes_gcm.c │ │ │ │ │ ├── calib_aes_gcm.h │ │ │ │ │ ├── calib_basic.c │ │ │ │ │ ├── calib_basic.h │ │ │ │ │ ├── calib_checkmac.c │ │ │ │ │ ├── calib_command.c │ │ │ │ │ ├── calib_command.h │ │ │ │ │ ├── calib_counter.c │ │ │ │ │ ├── calib_derivekey.c │ │ │ │ │ ├── calib_ecdh.c │ │ │ │ │ ├── calib_execution.c │ │ │ │ │ ├── calib_execution.h │ │ │ │ │ ├── calib_gendig.c │ │ │ │ │ ├── calib_genkey.c │ │ │ │ │ ├── calib_helpers.c │ │ │ │ │ ├── calib_hmac.c │ │ │ │ │ ├── calib_info.c │ │ │ │ │ ├── calib_kdf.c │ │ │ │ │ ├── calib_lock.c │ │ │ │ │ ├── calib_mac.c │ │ │ │ │ ├── calib_nonce.c │ │ │ │ │ ├── calib_privwrite.c │ │ │ │ │ ├── calib_random.c │ │ │ │ │ ├── calib_read.c │ │ │ │ │ ├── calib_secureboot.c │ │ │ │ │ ├── calib_selftest.c │ │ │ │ │ ├── calib_sha.c │ │ │ │ │ ├── calib_sign.c │ │ │ │ │ ├── calib_updateextra.c │ │ │ │ │ ├── calib_verify.c │ │ │ │ │ └── calib_write.c │ │ │ │ ├── crypto │ │ │ │ │ ├── README.md │ │ │ │ │ ├── atca_crypto_hw_aes.h │ │ │ │ │ ├── atca_crypto_hw_aes_cbc.c │ │ │ │ │ ├── atca_crypto_hw_aes_cbcmac.c │ │ │ │ │ ├── atca_crypto_hw_aes_ccm.c │ │ │ │ │ ├── atca_crypto_hw_aes_cmac.c │ │ │ │ │ ├── atca_crypto_hw_aes_ctr.c │ │ │ │ │ ├── atca_crypto_pbkdf2.c │ │ │ │ │ ├── atca_crypto_sw.h │ │ │ │ │ ├── atca_crypto_sw_ecdsa.c │ │ │ │ │ ├── atca_crypto_sw_ecdsa.h │ │ │ │ │ ├── atca_crypto_sw_rand.c │ │ │ │ │ ├── atca_crypto_sw_rand.h │ │ │ │ │ ├── atca_crypto_sw_sha1.c │ │ │ │ │ ├── atca_crypto_sw_sha1.h │ │ │ │ │ ├── atca_crypto_sw_sha2.c │ │ │ │ │ ├── atca_crypto_sw_sha2.h │ │ │ │ │ └── hashes │ │ │ │ │ │ ├── sha1_routines.c │ │ │ │ │ │ ├── sha1_routines.h │ │ │ │ │ │ ├── sha2_routines.c │ │ │ │ │ │ └── sha2_routines.h │ │ │ │ ├── cryptoauthlib.h │ │ │ │ ├── hal │ │ │ │ │ ├── 90-cryptohid.rules │ │ │ │ │ ├── README.md │ │ │ │ │ ├── atca_hal.c │ │ │ │ │ ├── atca_hal.h │ │ │ │ │ ├── atca_start_config.h │ │ │ │ │ ├── atca_start_iface.h │ │ │ │ │ ├── hal_all_platforms_kit_hidapi.c │ │ │ │ │ ├── hal_freertos.c │ │ │ │ │ ├── hal_gpio_harmony.c │ │ │ │ │ ├── hal_gpio_harmony.h │ │ │ │ │ ├── hal_i2c_harmony.c │ │ │ │ │ ├── hal_i2c_harmony.c.orig │ │ │ │ │ ├── hal_i2c_start.c │ │ │ │ │ ├── hal_i2c_start.h │ │ │ │ │ ├── hal_kit_bridge.c │ │ │ │ │ ├── hal_kit_bridge.h │ │ │ │ │ ├── hal_linux.c │ │ │ │ │ ├── hal_linux_i2c_userspace.c │ │ │ │ │ ├── hal_linux_spi_userspace.c │ │ │ │ │ ├── hal_sam0_i2c_asf.c │ │ │ │ │ ├── hal_sam0_i2c_asf.h │ │ │ │ │ ├── hal_sam_i2c_asf.c │ │ │ │ │ ├── hal_sam_i2c_asf.h │ │ │ │ │ ├── hal_sam_timer_asf.c │ │ │ │ │ ├── hal_spi_harmony.c │ │ │ │ │ ├── hal_swi_bitbang_harmony.c │ │ │ │ │ ├── hal_swi_uart.c │ │ │ │ │ ├── hal_swi_uart.h │ │ │ │ │ ├── hal_timer_start.c │ │ │ │ │ ├── hal_uart_harmony.c │ │ │ │ │ ├── hal_uc3_i2c_asf.c │ │ │ │ │ ├── hal_uc3_i2c_asf.h │ │ │ │ │ ├── hal_uc3_timer_asf.c │ │ │ │ │ ├── hal_windows.c │ │ │ │ │ ├── kit_phy.h │ │ │ │ │ ├── kit_protocol.c │ │ │ │ │ ├── kit_protocol.h │ │ │ │ │ ├── swi_uart_samd21_asf.c │ │ │ │ │ ├── swi_uart_samd21_asf.h │ │ │ │ │ ├── swi_uart_start.c │ │ │ │ │ └── swi_uart_start.h │ │ │ │ ├── host │ │ │ │ │ ├── atca_host.c │ │ │ │ │ └── atca_host.h │ │ │ │ ├── jwt │ │ │ │ │ ├── atca_jwt.c │ │ │ │ │ └── atca_jwt.h │ │ │ │ ├── mbedtls │ │ │ │ │ ├── README.md │ │ │ │ │ ├── atca_mbedtls_ecdh.c │ │ │ │ │ ├── atca_mbedtls_ecdsa.c │ │ │ │ │ ├── atca_mbedtls_wrap.c │ │ │ │ │ └── atca_mbedtls_wrap.h │ │ │ │ ├── openssl │ │ │ │ │ ├── README.md │ │ │ │ │ └── atca_openssl_interface.c │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── cryptoki.h │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ ├── pkcs11_attrib.c │ │ │ │ │ ├── pkcs11_attrib.h │ │ │ │ │ ├── pkcs11_cert.c │ │ │ │ │ ├── pkcs11_cert.h │ │ │ │ │ ├── pkcs11_config.c │ │ │ │ │ ├── pkcs11_config.h.in │ │ │ │ │ ├── pkcs11_debug.c │ │ │ │ │ ├── pkcs11_debug.h │ │ │ │ │ ├── pkcs11_digest.c │ │ │ │ │ ├── pkcs11_digest.h │ │ │ │ │ ├── pkcs11_encrypt.c │ │ │ │ │ ├── pkcs11_encrypt.h │ │ │ │ │ ├── pkcs11_find.c │ │ │ │ │ ├── pkcs11_find.h │ │ │ │ │ ├── pkcs11_info.c │ │ │ │ │ ├── pkcs11_info.h │ │ │ │ │ ├── pkcs11_init.c │ │ │ │ │ ├── pkcs11_init.h │ │ │ │ │ ├── pkcs11_key.c │ │ │ │ │ ├── pkcs11_key.h │ │ │ │ │ ├── pkcs11_main.c │ │ │ │ │ ├── pkcs11_mech.c │ │ │ │ │ ├── pkcs11_mech.h │ │ │ │ │ ├── pkcs11_object.c │ │ │ │ │ ├── pkcs11_object.h │ │ │ │ │ ├── pkcs11_os.c │ │ │ │ │ ├── pkcs11_os.h │ │ │ │ │ ├── pkcs11_session.c │ │ │ │ │ ├── pkcs11_session.h │ │ │ │ │ ├── pkcs11_signature.c │ │ │ │ │ ├── pkcs11_signature.h │ │ │ │ │ ├── pkcs11_slot.c │ │ │ │ │ ├── pkcs11_slot.h │ │ │ │ │ ├── pkcs11_token.c │ │ │ │ │ ├── pkcs11_token.h │ │ │ │ │ ├── pkcs11_util.c │ │ │ │ │ ├── pkcs11_util.h │ │ │ │ │ ├── pkcs11f.h │ │ │ │ │ └── pkcs11t.h │ │ │ │ └── wolfssl │ │ │ │ │ └── atca_wolfssl_interface.c │ │ │ ├── third_party │ │ │ │ ├── CMakeLists-mbedtls.txt.in │ │ │ │ ├── CMakeLists-wolfssl.txt.in │ │ │ │ ├── hal │ │ │ │ │ └── esp32 │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── hal_core2foraws.c │ │ │ │ │ │ ├── hal_esp32_i2c.c │ │ │ │ │ │ └── hal_esp32_timer.c │ │ │ │ ├── hidapi │ │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── hidapi │ │ │ │ │ │ └── hidapi.h │ │ │ │ │ ├── libusb │ │ │ │ │ │ └── hid.c │ │ │ │ │ ├── linux │ │ │ │ │ │ └── hid.c │ │ │ │ │ ├── mac │ │ │ │ │ │ └── hid.c │ │ │ │ │ └── windows │ │ │ │ │ │ └── hid.c │ │ │ │ └── unity │ │ │ │ │ ├── unity.c │ │ │ │ │ ├── unity.h │ │ │ │ │ ├── unity_fixture.c │ │ │ │ │ ├── unity_fixture.h │ │ │ │ │ ├── unity_fixture_internals.h │ │ │ │ │ ├── unity_internals.h │ │ │ │ │ ├── unity_license.txt │ │ │ │ │ ├── unity_memory.c │ │ │ │ │ ├── unity_memory.h │ │ │ │ │ └── unity_to_junit.py │ │ │ └── version.txt │ │ ├── esp_cryptoauth_utility │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── helper_scripts │ │ │ │ ├── __init__.py │ │ │ │ ├── cert2certdef.py │ │ │ │ ├── cert_sign.py │ │ │ │ ├── manifest.py │ │ │ │ └── serial.py │ │ │ ├── output_files │ │ │ │ └── README.md │ │ │ ├── requirements.txt │ │ │ ├── sample_bins │ │ │ │ └── secure_cert_mfg.bin │ │ │ ├── sample_certs │ │ │ │ ├── sample_signer_cert.pem │ │ │ │ └── sample_signer_key.pem │ │ │ └── secure_cert_mfg.py │ │ ├── generate_component.sh │ │ └── port │ │ │ ├── atca_cfgs_port.c │ │ │ └── atca_config.h │ └── fft │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── fft.c │ │ └── fft.h ├── main │ ├── CMakeLists.txt │ ├── clock.c │ ├── component.mk │ ├── crypto.c │ ├── cta.c │ ├── home.c │ ├── images │ │ ├── color_map.c │ │ ├── core2forAWS_qr_code.c │ │ ├── gauge_hand.c │ │ └── powered_by_aws_logo.c │ ├── includes │ │ ├── clock.h │ │ ├── crypto.h │ │ ├── cta.h │ │ ├── home.h │ │ ├── led_bar.h │ │ ├── mic.h │ │ ├── mpu.h │ │ ├── power.h │ │ ├── sound.h │ │ ├── touch.h │ │ └── wifi.h │ ├── led_bar.c │ ├── main.c │ ├── mic.c │ ├── mpu.c │ ├── power.c │ ├── sound.c │ ├── sounds │ │ └── music.c │ ├── touch.c │ └── wifi.c ├── partitions_16MB.csv ├── platformio.ini └── sdkconfig.defaults ├── Getting-Started ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── cli │ ├── html │ │ └── welcome.html │ ├── rainmaker.py │ ├── requirements.txt │ ├── rmaker_cmd │ │ ├── __init__.py │ │ ├── browserlogin.py │ │ ├── node.py │ │ ├── provision.py │ │ ├── test.py │ │ └── user.py │ ├── rmaker_lib │ │ ├── __init__.py │ │ ├── configmanager.py │ │ ├── device.py │ │ ├── exceptions.py │ │ ├── logger.py │ │ ├── node.py │ │ ├── serverconfig.py │ │ ├── service.py │ │ ├── session.py │ │ └── user.py │ ├── rmaker_tools │ │ ├── __init__.py │ │ ├── rmaker_claim │ │ │ ├── __init__.py │ │ │ ├── claim.py │ │ │ └── claim_config.py │ │ └── rmaker_prov │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── custom_cloud_config.proto │ │ │ └── custom_cloud_config_pb2.py │ │ │ ├── esp_rainmaker_prov.py │ │ │ ├── proto │ │ │ └── __init__.py │ │ │ ├── protocomm │ │ │ ├── proto │ │ │ │ ├── constants.proto │ │ │ │ ├── sec0.proto │ │ │ │ ├── sec1.proto │ │ │ │ └── session.proto │ │ │ └── python │ │ │ │ ├── constants_pb2.py │ │ │ │ ├── sec0_pb2.py │ │ │ │ ├── sec1_pb2.py │ │ │ │ └── session_pb2.py │ │ │ ├── prov │ │ │ ├── __init__.py │ │ │ ├── prov_util.py │ │ │ ├── user_mapping.py │ │ │ ├── wifi_prov.py │ │ │ └── wifi_scan.py │ │ │ ├── security │ │ │ ├── __init__.py │ │ │ ├── security.py │ │ │ ├── security0.py │ │ │ └── security1.py │ │ │ ├── transport │ │ │ ├── __init__.py │ │ │ ├── ble_cli.py │ │ │ ├── transport.py │ │ │ ├── transport_ble.py │ │ │ ├── transport_console.py │ │ │ └── transport_http.py │ │ │ ├── utils │ │ │ ├── __init__.py │ │ │ └── convenience.py │ │ │ └── wifi_provisioning │ │ │ ├── proto │ │ │ ├── wifi_config.proto │ │ │ ├── wifi_constants.proto │ │ │ └── wifi_scan.proto │ │ │ └── python │ │ │ ├── wifi_config_pb2.py │ │ │ ├── wifi_constants_pb2.py │ │ │ └── wifi_scan_pb2.py │ └── server_cert │ │ └── server_cert.pem ├── components │ ├── app_reset │ │ ├── CMakeLists.txt │ │ ├── app_reset.c │ │ ├── app_reset.h │ │ └── component.mk │ ├── app_wifi │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── app_wifi.c │ │ ├── app_wifi.h │ │ └── component.mk │ ├── button │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── button │ │ │ ├── button.c │ │ │ ├── button_obj.cpp │ │ │ └── include │ │ │ │ └── iot_button.h │ │ └── component.mk │ ├── core2forAWS │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── atecc608 │ │ │ ├── atecc608.c │ │ │ └── atecc608.h │ │ ├── axp192 │ │ │ ├── axp192.c │ │ │ ├── axp192.h │ │ │ ├── axp192_i2c.c │ │ │ └── axp192_i2c.h │ │ ├── bm8563 │ │ │ ├── bm8563.c │ │ │ └── bm8563.h │ │ ├── button │ │ │ ├── button.c │ │ │ └── button.h │ │ ├── component.mk │ │ ├── core2forAWS.c │ │ ├── core2forAWS.h │ │ ├── ft6336u │ │ │ ├── ft6336u.c │ │ │ └── ft6336u.h │ │ ├── i2c_bus │ │ │ ├── i2c_device.c │ │ │ └── i2c_device.h │ │ ├── microphone │ │ │ ├── microphone.c │ │ │ └── microphone.h │ │ ├── mpu6886 │ │ │ ├── mpu6886.c │ │ │ └── mpu6886.h │ │ ├── sk6812 │ │ │ ├── sk6812.c │ │ │ └── sk6812.h │ │ ├── speaker │ │ │ ├── speaker.c │ │ │ └── speaker.h │ │ └── tft │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ └── lvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── lv_conf.h │ │ │ └── lvgl │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── main.yml │ │ │ │ ├── merge-to-dev.yml │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ └── ROADMAP.md │ │ │ ├── examples │ │ │ ├── LVGL_Arduino.ino │ │ │ └── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ └── generate_all.py │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── infer_run.sh │ │ │ ├── lv_conf_checker.py │ │ │ └── release │ │ │ │ ├── com.py │ │ │ │ ├── dev.py │ │ │ │ ├── main.py │ │ │ │ ├── proj.py │ │ │ │ └── release.py │ │ │ ├── src │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lv_core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_style_dec.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_style.c │ │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ ├── lv_hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_debug.c │ │ │ │ ├── lv_debug.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_task.c │ │ │ │ ├── lv_task.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ ├── lv_themes │ │ │ │ ├── lv_theme.c │ │ │ │ ├── lv_theme.h │ │ │ │ ├── lv_theme_empty.c │ │ │ │ ├── lv_theme_empty.h │ │ │ │ ├── lv_theme_material.c │ │ │ │ ├── lv_theme_material.h │ │ │ │ ├── lv_theme_mono.c │ │ │ │ ├── lv_theme_mono.h │ │ │ │ ├── lv_theme_template.c │ │ │ │ ├── lv_theme_template.h │ │ │ │ └── lv_themes.mk │ │ │ ├── lv_widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_chart.c │ │ │ │ ├── lv_chart.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_cont.c │ │ │ │ ├── lv_cont.h │ │ │ │ ├── lv_cpicker.c │ │ │ │ ├── lv_cpicker.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_gauge.c │ │ │ │ ├── lv_gauge.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_imgbtn.c │ │ │ │ ├── lv_imgbtn.h │ │ │ │ ├── lv_keyboard.c │ │ │ │ ├── lv_keyboard.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_led.c │ │ │ │ ├── lv_led.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_linemeter.c │ │ │ │ ├── lv_linemeter.h │ │ │ │ ├── lv_list.c │ │ │ │ ├── lv_list.h │ │ │ │ ├── lv_msgbox.c │ │ │ │ ├── lv_msgbox.h │ │ │ │ ├── lv_objmask.c │ │ │ │ ├── lv_objmask.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_page.c │ │ │ │ ├── lv_page.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_spinbox.c │ │ │ │ ├── lv_spinbox.h │ │ │ │ ├── lv_spinner.c │ │ │ │ ├── lv_spinner.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_tabview.c │ │ │ │ ├── lv_tabview.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ ├── lv_tileview.c │ │ │ │ ├── lv_tileview.h │ │ │ │ ├── lv_widgets.mk │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ └── lvgl.h │ │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── build.py │ │ │ ├── font_1.fnt │ │ │ ├── font_2.fnt │ │ │ ├── font_3.fnt │ │ │ ├── icon.png │ │ │ ├── icon2.png │ │ │ ├── lv_test_assert.c │ │ │ ├── lv_test_assert.h │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_core │ │ │ │ ├── lv_test_core.c │ │ │ │ ├── lv_test_core.h │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_style.c │ │ │ │ └── lv_test_style.h │ │ │ ├── lv_test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_2.c │ │ │ │ └── font_3.c │ │ │ ├── lv_test_main.c │ │ │ ├── lv_test_ref_imgs │ │ │ │ └── lv_test_img32_label_1.png │ │ │ └── lv_test_widgets │ │ │ │ ├── lv_test_label.c │ │ │ │ └── lv_test_label.h │ │ │ └── zephyr │ │ │ └── module.yml │ ├── esp-cryptoauthlib │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── component.mk │ │ ├── cryptoauthlib │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── README.md │ │ │ │ ├── api_206a │ │ │ │ │ ├── api_206a.c │ │ │ │ │ └── api_206a.h │ │ │ │ ├── ip_protection │ │ │ │ │ ├── README.md │ │ │ │ │ ├── symmetric_authentication.c │ │ │ │ │ └── symmetric_authentication.h │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cryptoauthlib.conf.in │ │ │ │ │ ├── example_cert_chain.c │ │ │ │ │ ├── example_cert_chain.h │ │ │ │ │ ├── example_pkcs11_config.c │ │ │ │ │ ├── slot.conf.tmpl │ │ │ │ │ └── trust_pkcs11_config.c │ │ │ │ ├── secure_boot │ │ │ │ │ ├── README.md │ │ │ │ │ ├── io_protection_key.h │ │ │ │ │ ├── secure_boot.c │ │ │ │ │ ├── secure_boot.h │ │ │ │ │ └── secure_boot_memory.h │ │ │ │ └── tng │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── tflxtls_cert_def_4_device.c │ │ │ │ │ ├── tflxtls_cert_def_4_device.h │ │ │ │ │ ├── tng_atca.c │ │ │ │ │ ├── tng_atca.h │ │ │ │ │ ├── tng_atcacert_client.c │ │ │ │ │ ├── tng_atcacert_client.h │ │ │ │ │ ├── tng_root_cert.c │ │ │ │ │ ├── tng_root_cert.h │ │ │ │ │ ├── tnglora_cert_def_1_signer.c │ │ │ │ │ ├── tnglora_cert_def_1_signer.h │ │ │ │ │ ├── tnglora_cert_def_2_device.c │ │ │ │ │ ├── tnglora_cert_def_2_device.h │ │ │ │ │ ├── tnglora_cert_def_4_device.c │ │ │ │ │ ├── tnglora_cert_def_4_device.h │ │ │ │ │ ├── tngtls_cert_def_1_signer.c │ │ │ │ │ ├── tngtls_cert_def_1_signer.h │ │ │ │ │ ├── tngtls_cert_def_2_device.c │ │ │ │ │ ├── tngtls_cert_def_2_device.h │ │ │ │ │ ├── tngtls_cert_def_3_device.c │ │ │ │ │ └── tngtls_cert_def_3_device.h │ │ │ ├── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── atca_basic.c │ │ │ │ ├── atca_basic.h │ │ │ │ ├── atca_bool.h │ │ │ │ ├── atca_cfgs.c │ │ │ │ ├── atca_cfgs.h │ │ │ │ ├── atca_compiler.h │ │ │ │ ├── atca_config.h.in │ │ │ │ ├── atca_debug.c │ │ │ │ ├── atca_debug.h │ │ │ │ ├── atca_device.c │ │ │ │ ├── atca_device.h │ │ │ │ ├── atca_devtypes.h │ │ │ │ ├── atca_helpers.c │ │ │ │ ├── atca_helpers.h │ │ │ │ ├── atca_iface.c │ │ │ │ ├── atca_iface.h │ │ │ │ ├── atca_status.h │ │ │ │ ├── atca_utils_sizes.c │ │ │ │ ├── atca_version.h │ │ │ │ ├── atcacert │ │ │ │ │ ├── atcacert.h │ │ │ │ │ ├── atcacert_client.c │ │ │ │ │ ├── atcacert_client.h │ │ │ │ │ ├── atcacert_date.c │ │ │ │ │ ├── atcacert_date.h │ │ │ │ │ ├── atcacert_def.c │ │ │ │ │ ├── atcacert_def.h │ │ │ │ │ ├── atcacert_der.c │ │ │ │ │ ├── atcacert_der.h │ │ │ │ │ ├── atcacert_host_hw.c │ │ │ │ │ ├── atcacert_host_hw.h │ │ │ │ │ ├── atcacert_host_sw.c │ │ │ │ │ ├── atcacert_host_sw.h │ │ │ │ │ ├── atcacert_pem.c │ │ │ │ │ └── atcacert_pem.h │ │ │ │ ├── calib │ │ │ │ │ ├── README.md │ │ │ │ │ ├── calib_aes.c │ │ │ │ │ ├── calib_aes_gcm.c │ │ │ │ │ ├── calib_aes_gcm.h │ │ │ │ │ ├── calib_basic.c │ │ │ │ │ ├── calib_basic.h │ │ │ │ │ ├── calib_checkmac.c │ │ │ │ │ ├── calib_command.c │ │ │ │ │ ├── calib_command.h │ │ │ │ │ ├── calib_counter.c │ │ │ │ │ ├── calib_derivekey.c │ │ │ │ │ ├── calib_ecdh.c │ │ │ │ │ ├── calib_execution.c │ │ │ │ │ ├── calib_execution.h │ │ │ │ │ ├── calib_gendig.c │ │ │ │ │ ├── calib_genkey.c │ │ │ │ │ ├── calib_helpers.c │ │ │ │ │ ├── calib_hmac.c │ │ │ │ │ ├── calib_info.c │ │ │ │ │ ├── calib_kdf.c │ │ │ │ │ ├── calib_lock.c │ │ │ │ │ ├── calib_mac.c │ │ │ │ │ ├── calib_nonce.c │ │ │ │ │ ├── calib_privwrite.c │ │ │ │ │ ├── calib_random.c │ │ │ │ │ ├── calib_read.c │ │ │ │ │ ├── calib_secureboot.c │ │ │ │ │ ├── calib_selftest.c │ │ │ │ │ ├── calib_sha.c │ │ │ │ │ ├── calib_sign.c │ │ │ │ │ ├── calib_updateextra.c │ │ │ │ │ ├── calib_verify.c │ │ │ │ │ └── calib_write.c │ │ │ │ ├── crypto │ │ │ │ │ ├── README.md │ │ │ │ │ ├── atca_crypto_hw_aes.h │ │ │ │ │ ├── atca_crypto_hw_aes_cbc.c │ │ │ │ │ ├── atca_crypto_hw_aes_cbcmac.c │ │ │ │ │ ├── atca_crypto_hw_aes_ccm.c │ │ │ │ │ ├── atca_crypto_hw_aes_cmac.c │ │ │ │ │ ├── atca_crypto_hw_aes_ctr.c │ │ │ │ │ ├── atca_crypto_pbkdf2.c │ │ │ │ │ ├── atca_crypto_sw.h │ │ │ │ │ ├── atca_crypto_sw_ecdsa.c │ │ │ │ │ ├── atca_crypto_sw_ecdsa.h │ │ │ │ │ ├── atca_crypto_sw_rand.c │ │ │ │ │ ├── atca_crypto_sw_rand.h │ │ │ │ │ ├── atca_crypto_sw_sha1.c │ │ │ │ │ ├── atca_crypto_sw_sha1.h │ │ │ │ │ ├── atca_crypto_sw_sha2.c │ │ │ │ │ ├── atca_crypto_sw_sha2.h │ │ │ │ │ └── hashes │ │ │ │ │ │ ├── sha1_routines.c │ │ │ │ │ │ ├── sha1_routines.h │ │ │ │ │ │ ├── sha2_routines.c │ │ │ │ │ │ └── sha2_routines.h │ │ │ │ ├── cryptoauthlib.h │ │ │ │ ├── hal │ │ │ │ │ ├── 90-cryptohid.rules │ │ │ │ │ ├── README.md │ │ │ │ │ ├── atca_hal.c │ │ │ │ │ ├── atca_hal.h │ │ │ │ │ ├── atca_start_config.h │ │ │ │ │ ├── atca_start_iface.h │ │ │ │ │ ├── hal_all_platforms_kit_hidapi.c │ │ │ │ │ ├── hal_freertos.c │ │ │ │ │ ├── hal_gpio_harmony.c │ │ │ │ │ ├── hal_gpio_harmony.h │ │ │ │ │ ├── hal_i2c_harmony.c │ │ │ │ │ ├── hal_i2c_harmony.c.orig │ │ │ │ │ ├── hal_i2c_start.c │ │ │ │ │ ├── hal_i2c_start.h │ │ │ │ │ ├── hal_kit_bridge.c │ │ │ │ │ ├── hal_kit_bridge.h │ │ │ │ │ ├── hal_linux.c │ │ │ │ │ ├── hal_linux_i2c_userspace.c │ │ │ │ │ ├── hal_linux_spi_userspace.c │ │ │ │ │ ├── hal_sam0_i2c_asf.c │ │ │ │ │ ├── hal_sam0_i2c_asf.h │ │ │ │ │ ├── hal_sam_i2c_asf.c │ │ │ │ │ ├── hal_sam_i2c_asf.h │ │ │ │ │ ├── hal_sam_timer_asf.c │ │ │ │ │ ├── hal_spi_harmony.c │ │ │ │ │ ├── hal_swi_bitbang_harmony.c │ │ │ │ │ ├── hal_swi_uart.c │ │ │ │ │ ├── hal_swi_uart.h │ │ │ │ │ ├── hal_timer_start.c │ │ │ │ │ ├── hal_uart_harmony.c │ │ │ │ │ ├── hal_uc3_i2c_asf.c │ │ │ │ │ ├── hal_uc3_i2c_asf.h │ │ │ │ │ ├── hal_uc3_timer_asf.c │ │ │ │ │ ├── hal_windows.c │ │ │ │ │ ├── kit_phy.h │ │ │ │ │ ├── kit_protocol.c │ │ │ │ │ ├── kit_protocol.h │ │ │ │ │ ├── swi_uart_samd21_asf.c │ │ │ │ │ ├── swi_uart_samd21_asf.h │ │ │ │ │ ├── swi_uart_start.c │ │ │ │ │ └── swi_uart_start.h │ │ │ │ ├── host │ │ │ │ │ ├── atca_host.c │ │ │ │ │ └── atca_host.h │ │ │ │ ├── jwt │ │ │ │ │ ├── atca_jwt.c │ │ │ │ │ └── atca_jwt.h │ │ │ │ ├── mbedtls │ │ │ │ │ ├── README.md │ │ │ │ │ ├── atca_mbedtls_ecdh.c │ │ │ │ │ ├── atca_mbedtls_ecdsa.c │ │ │ │ │ ├── atca_mbedtls_wrap.c │ │ │ │ │ └── atca_mbedtls_wrap.h │ │ │ │ ├── openssl │ │ │ │ │ ├── README.md │ │ │ │ │ └── atca_openssl_interface.c │ │ │ │ ├── pkcs11 │ │ │ │ │ ├── cryptoki.h │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ ├── pkcs11_attrib.c │ │ │ │ │ ├── pkcs11_attrib.h │ │ │ │ │ ├── pkcs11_cert.c │ │ │ │ │ ├── pkcs11_cert.h │ │ │ │ │ ├── pkcs11_config.c │ │ │ │ │ ├── pkcs11_config.h.in │ │ │ │ │ ├── pkcs11_debug.c │ │ │ │ │ ├── pkcs11_debug.h │ │ │ │ │ ├── pkcs11_digest.c │ │ │ │ │ ├── pkcs11_digest.h │ │ │ │ │ ├── pkcs11_encrypt.c │ │ │ │ │ ├── pkcs11_encrypt.h │ │ │ │ │ ├── pkcs11_find.c │ │ │ │ │ ├── pkcs11_find.h │ │ │ │ │ ├── pkcs11_info.c │ │ │ │ │ ├── pkcs11_info.h │ │ │ │ │ ├── pkcs11_init.c │ │ │ │ │ ├── pkcs11_init.h │ │ │ │ │ ├── pkcs11_key.c │ │ │ │ │ ├── pkcs11_key.h │ │ │ │ │ ├── pkcs11_main.c │ │ │ │ │ ├── pkcs11_mech.c │ │ │ │ │ ├── pkcs11_mech.h │ │ │ │ │ ├── pkcs11_object.c │ │ │ │ │ ├── pkcs11_object.h │ │ │ │ │ ├── pkcs11_os.c │ │ │ │ │ ├── pkcs11_os.h │ │ │ │ │ ├── pkcs11_session.c │ │ │ │ │ ├── pkcs11_session.h │ │ │ │ │ ├── pkcs11_signature.c │ │ │ │ │ ├── pkcs11_signature.h │ │ │ │ │ ├── pkcs11_slot.c │ │ │ │ │ ├── pkcs11_slot.h │ │ │ │ │ ├── pkcs11_token.c │ │ │ │ │ ├── pkcs11_token.h │ │ │ │ │ ├── pkcs11_util.c │ │ │ │ │ ├── pkcs11_util.h │ │ │ │ │ ├── pkcs11f.h │ │ │ │ │ └── pkcs11t.h │ │ │ │ └── wolfssl │ │ │ │ │ └── atca_wolfssl_interface.c │ │ │ ├── third_party │ │ │ │ ├── CMakeLists-mbedtls.txt.in │ │ │ │ ├── CMakeLists-wolfssl.txt.in │ │ │ │ ├── hal │ │ │ │ │ └── esp32 │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── hal_core2foraws.c │ │ │ │ │ │ ├── hal_esp32_i2c.c │ │ │ │ │ │ └── hal_esp32_timer.c │ │ │ │ ├── hidapi │ │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── hidapi │ │ │ │ │ │ └── hidapi.h │ │ │ │ │ ├── libusb │ │ │ │ │ │ └── hid.c │ │ │ │ │ ├── linux │ │ │ │ │ │ └── hid.c │ │ │ │ │ ├── mac │ │ │ │ │ │ └── hid.c │ │ │ │ │ └── windows │ │ │ │ │ │ └── hid.c │ │ │ │ └── unity │ │ │ │ │ ├── unity.c │ │ │ │ │ ├── unity.h │ │ │ │ │ ├── unity_fixture.c │ │ │ │ │ ├── unity_fixture.h │ │ │ │ │ ├── unity_fixture_internals.h │ │ │ │ │ ├── unity_internals.h │ │ │ │ │ ├── unity_license.txt │ │ │ │ │ ├── unity_memory.c │ │ │ │ │ ├── unity_memory.h │ │ │ │ │ └── unity_to_junit.py │ │ │ └── version.txt │ │ ├── esp_cryptoauth_utility │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── helper_scripts │ │ │ │ ├── __init__.py │ │ │ │ ├── cert2certdef.py │ │ │ │ ├── cert_sign.py │ │ │ │ ├── manifest.py │ │ │ │ └── serial.py │ │ │ ├── output_files │ │ │ │ └── README.md │ │ │ ├── requirements.txt │ │ │ ├── sample_bins │ │ │ │ └── secure_cert_mfg.bin │ │ │ ├── sample_certs │ │ │ │ ├── sample_signer_cert.pem │ │ │ │ └── sample_signer_key.pem │ │ │ └── secure_cert_mfg.py │ │ ├── generate_component.sh │ │ └── port │ │ │ ├── atca_cfgs_port.c │ │ │ └── atca_config.h │ ├── esp-insights │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .gitmodules │ │ ├── README.md │ │ ├── cli │ │ │ ├── .gitignore │ │ │ ├── html │ │ │ │ └── welcome.html │ │ │ ├── rainmaker.py │ │ │ ├── requirements.txt │ │ │ ├── rmaker_cmd │ │ │ │ ├── __init__.py │ │ │ │ ├── browserlogin.py │ │ │ │ ├── node.py │ │ │ │ ├── provision.py │ │ │ │ ├── test.py │ │ │ │ └── user.py │ │ │ ├── rmaker_lib │ │ │ │ ├── __init__.py │ │ │ │ ├── configmanager.py │ │ │ │ ├── device.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── logger.py │ │ │ │ ├── node.py │ │ │ │ ├── serverconfig.py │ │ │ │ ├── service.py │ │ │ │ ├── session.py │ │ │ │ └── user.py │ │ │ └── rmaker_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── rmaker_claim │ │ │ │ ├── __init__.py │ │ │ │ ├── claim.py │ │ │ │ └── claim_config.py │ │ │ │ └── rmaker_prov │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── config │ │ │ │ ├── custom_cloud_config.proto │ │ │ │ └── custom_cloud_config_pb2.py │ │ │ │ ├── esp_rainmaker_prov.py │ │ │ │ ├── proto │ │ │ │ └── __init__.py │ │ │ │ ├── protocomm │ │ │ │ ├── proto │ │ │ │ │ ├── constants.proto │ │ │ │ │ ├── sec0.proto │ │ │ │ │ ├── sec1.proto │ │ │ │ │ └── session.proto │ │ │ │ └── python │ │ │ │ │ ├── constants_pb2.py │ │ │ │ │ ├── sec0_pb2.py │ │ │ │ │ ├── sec1_pb2.py │ │ │ │ │ └── session_pb2.py │ │ │ │ ├── prov │ │ │ │ ├── __init__.py │ │ │ │ ├── prov_util.py │ │ │ │ ├── user_mapping.py │ │ │ │ ├── wifi_prov.py │ │ │ │ └── wifi_scan.py │ │ │ │ ├── security │ │ │ │ ├── __init__.py │ │ │ │ ├── security.py │ │ │ │ ├── security0.py │ │ │ │ └── security1.py │ │ │ │ ├── transport │ │ │ │ ├── __init__.py │ │ │ │ ├── ble_cli.py │ │ │ │ ├── transport.py │ │ │ │ ├── transport_ble.py │ │ │ │ ├── transport_console.py │ │ │ │ └── transport_http.py │ │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ └── convenience.py │ │ │ │ └── wifi_provisioning │ │ │ │ ├── proto │ │ │ │ ├── wifi_config.proto │ │ │ │ ├── wifi_constants.proto │ │ │ │ └── wifi_scan.proto │ │ │ │ └── python │ │ │ │ ├── wifi_config_pb2.py │ │ │ │ ├── wifi_constants_pb2.py │ │ │ │ └── wifi_scan_pb2.py │ │ ├── components │ │ │ ├── esp_diagnostics │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── include │ │ │ │ │ ├── esp_diagnostics.h │ │ │ │ │ ├── esp_diagnostics_metrics.h │ │ │ │ │ ├── esp_diagnostics_network_variables.h │ │ │ │ │ ├── esp_diagnostics_system_metrics.h │ │ │ │ │ └── esp_diagnostics_variables.h │ │ │ │ └── src │ │ │ │ │ ├── esp_diagnostics_heap_metrics.c │ │ │ │ │ ├── esp_diagnostics_log_hook.c │ │ │ │ │ ├── esp_diagnostics_metrics.c │ │ │ │ │ ├── esp_diagnostics_network_variables.c │ │ │ │ │ ├── esp_diagnostics_utils.c │ │ │ │ │ ├── esp_diagnostics_variables.c │ │ │ │ │ └── esp_diagnostics_wifi_metrics.c │ │ │ ├── esp_insights │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── include │ │ │ │ │ └── esp_insights.h │ │ │ │ ├── project_include.cmake │ │ │ │ ├── scripts │ │ │ │ │ ├── gen_tar_dir.cmake │ │ │ │ │ └── get_projbuild_gitconfig.py │ │ │ │ └── src │ │ │ │ │ ├── esp_insights.c │ │ │ │ │ ├── esp_insights_cbor_encoder.c │ │ │ │ │ ├── esp_insights_cbor_encoder.h │ │ │ │ │ ├── esp_insights_client_data.c │ │ │ │ │ ├── esp_insights_client_data.h │ │ │ │ │ ├── esp_insights_encoder.c │ │ │ │ │ ├── esp_insights_encoder.h │ │ │ │ │ ├── esp_insights_mqtt.c │ │ │ │ │ └── esp_insights_mqtt.h │ │ │ ├── rmaker_common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── README.md │ │ │ │ ├── component.mk │ │ │ │ ├── include │ │ │ │ │ ├── esp_rmaker_common_events.h │ │ │ │ │ ├── esp_rmaker_factory.h │ │ │ │ │ ├── esp_rmaker_mqtt_glue.h │ │ │ │ │ ├── esp_rmaker_utils.h │ │ │ │ │ └── esp_rmaker_work_queue.h │ │ │ │ └── src │ │ │ │ │ ├── esp-mqtt │ │ │ │ │ └── esp-mqtt-glue.c │ │ │ │ │ ├── factory.c │ │ │ │ │ ├── time.c │ │ │ │ │ ├── timezone.c │ │ │ │ │ ├── utils.c │ │ │ │ │ └── work_queue.c │ │ │ └── rtc_store │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── include │ │ │ │ └── rtc_store.h │ │ │ │ └── src │ │ │ │ ├── rbuf.c │ │ │ │ ├── rbuf.h │ │ │ │ └── rtc_store.c │ │ ├── docs │ │ │ └── _static │ │ │ │ ├── core_dump.png │ │ │ │ ├── heap_metric.png │ │ │ │ ├── logs.png │ │ │ │ ├── overview.png │ │ │ │ └── variables.png │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── diagnostics_smoke_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig.projbuild │ │ │ │ │ ├── app_main.c │ │ │ │ │ ├── app_wifi.c │ │ │ │ │ └── app_wifi.h │ │ │ │ ├── partitions.csv │ │ │ │ └── sdkconfig.defaults │ │ │ └── minimal_diagnostics │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.projbuild │ │ │ │ ├── app_main.c │ │ │ │ ├── app_wifi.c │ │ │ │ └── app_wifi.h │ │ │ │ ├── partitions.csv │ │ │ │ └── sdkconfig.defaults │ │ └── idf-patches │ │ │ ├── Diagnostics-support-in-esp-idf-tag-v4.1.1-and-tag-v4.2.2.patch │ │ │ └── Diagnostics-support-in-esp-idf-tag-v4.3.patch │ ├── esp_rainmaker │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── component.mk │ │ ├── include │ │ │ ├── esp_rmaker_console.h │ │ │ ├── esp_rmaker_core.h │ │ │ ├── esp_rmaker_mqtt.h │ │ │ ├── esp_rmaker_ota.h │ │ │ ├── esp_rmaker_schedule.h │ │ │ ├── esp_rmaker_standard_devices.h │ │ │ ├── esp_rmaker_standard_params.h │ │ │ ├── esp_rmaker_standard_services.h │ │ │ ├── esp_rmaker_standard_types.h │ │ │ └── esp_rmaker_user_mapping.h │ │ ├── server_certs │ │ │ ├── rmaker_claim_service_server.crt │ │ │ ├── rmaker_mqtt_server.crt │ │ │ └── rmaker_ota_server.crt │ │ └── src │ │ │ ├── console │ │ │ ├── esp_rmaker_commands.c │ │ │ ├── esp_rmaker_console.c │ │ │ └── esp_rmaker_console_internal.h │ │ │ ├── core │ │ │ ├── esp_rmaker_claim.c │ │ │ ├── esp_rmaker_claim.h │ │ │ ├── esp_rmaker_claim.pb-c.c │ │ │ ├── esp_rmaker_claim.pb-c.h │ │ │ ├── esp_rmaker_claim.proto │ │ │ ├── esp_rmaker_client_data.c │ │ │ ├── esp_rmaker_client_data.h │ │ │ ├── esp_rmaker_core.c │ │ │ ├── esp_rmaker_device.c │ │ │ ├── esp_rmaker_internal.h │ │ │ ├── esp_rmaker_local_ctrl.c │ │ │ ├── esp_rmaker_node.c │ │ │ ├── esp_rmaker_node_config.c │ │ │ ├── esp_rmaker_param.c │ │ │ ├── esp_rmaker_schedule.c │ │ │ ├── esp_rmaker_system_service.c │ │ │ ├── esp_rmaker_time_service.c │ │ │ ├── esp_rmaker_user_mapping.c │ │ │ ├── esp_rmaker_user_mapping.pb-c.c │ │ │ ├── esp_rmaker_user_mapping.pb-c.h │ │ │ └── esp_rmaker_user_mapping.proto │ │ │ ├── mqtt │ │ │ └── esp_rmaker_mqtt.c │ │ │ ├── ota │ │ │ ├── esp_rmaker_ota.c │ │ │ ├── esp_rmaker_ota_internal.h │ │ │ ├── esp_rmaker_ota_using_params.c │ │ │ └── esp_rmaker_ota_using_topics.c │ │ │ └── standard_types │ │ │ ├── esp_rmaker_standard_devices.c │ │ │ ├── esp_rmaker_standard_params.c │ │ │ └── esp_rmaker_standard_services.c │ ├── esp_schedule │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── include │ │ │ └── esp_schedule.h │ │ └── src │ │ │ ├── esp_schedule.c │ │ │ ├── esp_schedule_internal.h │ │ │ └── esp_schedule_nvs.c │ ├── json_generator │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── idf_component.yml │ │ └── upstream │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── json_generator.c │ │ │ ├── json_generator.h │ │ │ └── test.c │ ├── json_parser │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── idf_component.yml │ │ └── upstream │ │ │ ├── .gitmodules │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── json_parser.h │ │ │ ├── jsmn │ │ │ ├── .clang-format │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── example │ │ │ │ ├── jsondump.c │ │ │ │ └── simple.c │ │ │ ├── jsmn.h │ │ │ ├── library.json │ │ │ └── test │ │ │ │ ├── test.h │ │ │ │ ├── tests.c │ │ │ │ └── testutil.h │ │ │ ├── src │ │ │ └── json_parser.c │ │ │ └── tests │ │ │ └── main.c │ ├── qrcode │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── include │ │ │ └── qrcode.h │ │ └── src │ │ │ ├── qrcode.c │ │ │ ├── qrcodegen.c │ │ │ └── qrcodegen.h │ ├── rmaker_common │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── component.mk │ │ ├── include │ │ │ ├── esp_rmaker_common_events.h │ │ │ ├── esp_rmaker_factory.h │ │ │ ├── esp_rmaker_mqtt_glue.h │ │ │ ├── esp_rmaker_utils.h │ │ │ └── esp_rmaker_work_queue.h │ │ └── src │ │ │ ├── esp-mqtt │ │ │ └── esp-mqtt-glue.c │ │ │ ├── factory.c │ │ │ ├── time.c │ │ │ ├── timezone.c │ │ │ ├── utils.c │ │ │ └── work_queue.c │ └── ws2812_led │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── component.mk │ │ ├── led_strip.h │ │ ├── led_strip_rmt_ws2812.c │ │ ├── ws2812_led.c │ │ └── ws2812_led.h ├── docs │ ├── Doxyfile │ ├── Makefile │ ├── README.md │ ├── _static │ │ ├── esp-rainmaker-logo.png │ │ └── theme_overrides.css │ ├── c-api-reference │ │ ├── index.rst │ │ ├── rainmaker_common.rst │ │ ├── rainmaker_console.rst │ │ ├── rainmaker_core.rst │ │ ├── rainmaker_mqtt.rst │ │ ├── rainmaker_ota.rst │ │ └── rainmaker_standard_types.rst │ ├── conf.py │ ├── gen-dxd.py │ ├── index.rst │ ├── link-roles.py │ ├── local_util.py │ ├── make.bat │ ├── python-api-reference │ │ ├── cmd.rst │ │ ├── index.rst │ │ └── lib.rst │ └── requirements.txt ├── main │ ├── CMakeLists.txt │ ├── app_driver.c │ ├── app_main.c │ ├── app_priv.h │ ├── component.mk │ ├── display.c │ ├── display.h │ ├── fan.c │ ├── fan.h │ ├── fan_off.c │ ├── fan_spinning.c │ ├── house_off.c │ ├── house_on.c │ ├── hsv2rgb.c │ ├── hsv2rgb.h │ ├── light.c │ ├── light.h │ ├── temperature.c │ ├── temperature.h │ ├── thermometer.c │ └── user_parameters.h ├── partitions_4MB_sec.csv ├── platformio.ini └── sdkconfig.defaults ├── Hardware-Features-Demo ├── CMakeLists.txt ├── LICENSE.md ├── Makefile ├── README.md ├── components │ ├── core2forAWS │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── atecc608 │ │ │ ├── atecc608.c │ │ │ └── atecc608.h │ │ ├── axp192 │ │ │ ├── axp192.c │ │ │ ├── axp192.h │ │ │ ├── axp192_i2c.c │ │ │ └── axp192_i2c.h │ │ ├── bm8563 │ │ │ ├── bm8563.c │ │ │ └── bm8563.h │ │ ├── button │ │ │ ├── button.c │ │ │ └── button.h │ │ ├── component.mk │ │ ├── core2forAWS.c │ │ ├── core2forAWS.h │ │ ├── ft6336u │ │ │ ├── ft6336u.c │ │ │ └── ft6336u.h │ │ ├── i2c_bus │ │ │ ├── i2c_device.c │ │ │ └── i2c_device.h │ │ ├── microphone │ │ │ ├── microphone.c │ │ │ └── microphone.h │ │ ├── mpu6886 │ │ │ ├── mpu6886.c │ │ │ └── mpu6886.h │ │ ├── sk6812 │ │ │ ├── sk6812.c │ │ │ └── sk6812.h │ │ ├── speaker │ │ │ ├── speaker.c │ │ │ └── speaker.h │ │ └── tft │ │ │ ├── disp_driver.c │ │ │ ├── disp_driver.h │ │ │ ├── disp_spi.c │ │ │ ├── disp_spi.h │ │ │ ├── ili9341.c │ │ │ ├── ili9341.h │ │ │ └── lvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ ├── lv_conf.h │ │ │ └── lvgl │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── main.yml │ │ │ │ ├── merge-to-dev.yml │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── component.mk │ │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ └── ROADMAP.md │ │ │ ├── examples │ │ │ ├── LVGL_Arduino.ino │ │ │ └── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── lv_conf_template.h │ │ │ ├── lvgl.h │ │ │ ├── lvgl.mk │ │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ └── generate_all.py │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── infer_run.sh │ │ │ ├── lv_conf_checker.py │ │ │ └── release │ │ │ │ ├── com.py │ │ │ │ ├── dev.py │ │ │ │ ├── main.py │ │ │ │ ├── proj.py │ │ │ │ └── release.py │ │ │ ├── src │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lv_core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_style_dec.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_style.c │ │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ └── lv_gpu_stm32_dma2d.h │ │ │ ├── lv_hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_debug.c │ │ │ │ ├── lv_debug.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_task.c │ │ │ │ ├── lv_task.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ ├── lv_themes │ │ │ │ ├── lv_theme.c │ │ │ │ ├── lv_theme.h │ │ │ │ ├── lv_theme_empty.c │ │ │ │ ├── lv_theme_empty.h │ │ │ │ ├── lv_theme_material.c │ │ │ │ ├── lv_theme_material.h │ │ │ │ ├── lv_theme_mono.c │ │ │ │ ├── lv_theme_mono.h │ │ │ │ ├── lv_theme_template.c │ │ │ │ ├── lv_theme_template.h │ │ │ │ └── lv_themes.mk │ │ │ ├── lv_widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_calendar.c │ │ │ │ ├── lv_calendar.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_chart.c │ │ │ │ ├── lv_chart.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_cont.c │ │ │ │ ├── lv_cont.h │ │ │ │ ├── lv_cpicker.c │ │ │ │ ├── lv_cpicker.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_gauge.c │ │ │ │ ├── lv_gauge.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_imgbtn.c │ │ │ │ ├── lv_imgbtn.h │ │ │ │ ├── lv_keyboard.c │ │ │ │ ├── lv_keyboard.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_led.c │ │ │ │ ├── lv_led.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_linemeter.c │ │ │ │ ├── lv_linemeter.h │ │ │ │ ├── lv_list.c │ │ │ │ ├── lv_list.h │ │ │ │ ├── lv_msgbox.c │ │ │ │ ├── lv_msgbox.h │ │ │ │ ├── lv_objmask.c │ │ │ │ ├── lv_objmask.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_page.c │ │ │ │ ├── lv_page.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_spinbox.c │ │ │ │ ├── lv_spinbox.h │ │ │ │ ├── lv_spinner.c │ │ │ │ ├── lv_spinner.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_tabview.c │ │ │ │ ├── lv_tabview.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ ├── lv_tileview.c │ │ │ │ ├── lv_tileview.h │ │ │ │ ├── lv_widgets.mk │ │ │ │ ├── lv_win.c │ │ │ │ └── lv_win.h │ │ │ └── lvgl.h │ │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── build.py │ │ │ ├── font_1.fnt │ │ │ ├── font_2.fnt │ │ │ ├── font_3.fnt │ │ │ ├── icon.png │ │ │ ├── icon2.png │ │ │ ├── lv_test_assert.c │ │ │ ├── lv_test_assert.h │ │ │ ├── lv_test_conf.h │ │ │ ├── lv_test_core │ │ │ │ ├── lv_test_core.c │ │ │ │ ├── lv_test_core.h │ │ │ │ ├── lv_test_font_loader.c │ │ │ │ ├── lv_test_font_loader.h │ │ │ │ ├── lv_test_obj.c │ │ │ │ ├── lv_test_obj.h │ │ │ │ ├── lv_test_style.c │ │ │ │ └── lv_test_style.h │ │ │ ├── lv_test_fonts │ │ │ │ ├── font_1.c │ │ │ │ ├── font_2.c │ │ │ │ └── font_3.c │ │ │ ├── lv_test_main.c │ │ │ ├── lv_test_ref_imgs │ │ │ │ └── lv_test_img32_label_1.png │ │ │ └── lv_test_widgets │ │ │ │ ├── lv_test_label.c │ │ │ │ └── lv_test_label.h │ │ │ └── zephyr │ │ │ └── module.yml │ └── esp-cryptoauthlib │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.md │ │ ├── component.mk │ │ ├── cryptoauthlib │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── README.md │ │ │ ├── api_206a │ │ │ │ ├── api_206a.c │ │ │ │ └── api_206a.h │ │ │ ├── ip_protection │ │ │ │ ├── README.md │ │ │ │ ├── symmetric_authentication.c │ │ │ │ └── symmetric_authentication.h │ │ │ ├── pkcs11 │ │ │ │ ├── README.md │ │ │ │ ├── cryptoauthlib.conf.in │ │ │ │ ├── example_cert_chain.c │ │ │ │ ├── example_cert_chain.h │ │ │ │ ├── example_pkcs11_config.c │ │ │ │ ├── slot.conf.tmpl │ │ │ │ └── trust_pkcs11_config.c │ │ │ ├── secure_boot │ │ │ │ ├── README.md │ │ │ │ ├── io_protection_key.h │ │ │ │ ├── secure_boot.c │ │ │ │ ├── secure_boot.h │ │ │ │ └── secure_boot_memory.h │ │ │ └── tng │ │ │ │ ├── readme.md │ │ │ │ ├── tflxtls_cert_def_4_device.c │ │ │ │ ├── tflxtls_cert_def_4_device.h │ │ │ │ ├── tng_atca.c │ │ │ │ ├── tng_atca.h │ │ │ │ ├── tng_atcacert_client.c │ │ │ │ ├── tng_atcacert_client.h │ │ │ │ ├── tng_root_cert.c │ │ │ │ ├── tng_root_cert.h │ │ │ │ ├── tnglora_cert_def_1_signer.c │ │ │ │ ├── tnglora_cert_def_1_signer.h │ │ │ │ ├── tnglora_cert_def_2_device.c │ │ │ │ ├── tnglora_cert_def_2_device.h │ │ │ │ ├── tnglora_cert_def_4_device.c │ │ │ │ ├── tnglora_cert_def_4_device.h │ │ │ │ ├── tngtls_cert_def_1_signer.c │ │ │ │ ├── tngtls_cert_def_1_signer.h │ │ │ │ ├── tngtls_cert_def_2_device.c │ │ │ │ ├── tngtls_cert_def_2_device.h │ │ │ │ ├── tngtls_cert_def_3_device.c │ │ │ │ └── tngtls_cert_def_3_device.h │ │ ├── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── atca_basic.c │ │ │ ├── atca_basic.h │ │ │ ├── atca_bool.h │ │ │ ├── atca_cfgs.c │ │ │ ├── atca_cfgs.h │ │ │ ├── atca_compiler.h │ │ │ ├── atca_config.h.in │ │ │ ├── atca_debug.c │ │ │ ├── atca_debug.h │ │ │ ├── atca_device.c │ │ │ ├── atca_device.h │ │ │ ├── atca_devtypes.h │ │ │ ├── atca_helpers.c │ │ │ ├── atca_helpers.h │ │ │ ├── atca_iface.c │ │ │ ├── atca_iface.h │ │ │ ├── atca_status.h │ │ │ ├── atca_utils_sizes.c │ │ │ ├── atca_version.h │ │ │ ├── atcacert │ │ │ │ ├── atcacert.h │ │ │ │ ├── atcacert_client.c │ │ │ │ ├── atcacert_client.h │ │ │ │ ├── atcacert_date.c │ │ │ │ ├── atcacert_date.h │ │ │ │ ├── atcacert_def.c │ │ │ │ ├── atcacert_def.h │ │ │ │ ├── atcacert_der.c │ │ │ │ ├── atcacert_der.h │ │ │ │ ├── atcacert_host_hw.c │ │ │ │ ├── atcacert_host_hw.h │ │ │ │ ├── atcacert_host_sw.c │ │ │ │ ├── atcacert_host_sw.h │ │ │ │ ├── atcacert_pem.c │ │ │ │ └── atcacert_pem.h │ │ │ ├── calib │ │ │ │ ├── README.md │ │ │ │ ├── calib_aes.c │ │ │ │ ├── calib_aes_gcm.c │ │ │ │ ├── calib_aes_gcm.h │ │ │ │ ├── calib_basic.c │ │ │ │ ├── calib_basic.h │ │ │ │ ├── calib_checkmac.c │ │ │ │ ├── calib_command.c │ │ │ │ ├── calib_command.h │ │ │ │ ├── calib_counter.c │ │ │ │ ├── calib_derivekey.c │ │ │ │ ├── calib_ecdh.c │ │ │ │ ├── calib_execution.c │ │ │ │ ├── calib_execution.h │ │ │ │ ├── calib_gendig.c │ │ │ │ ├── calib_genkey.c │ │ │ │ ├── calib_helpers.c │ │ │ │ ├── calib_hmac.c │ │ │ │ ├── calib_info.c │ │ │ │ ├── calib_kdf.c │ │ │ │ ├── calib_lock.c │ │ │ │ ├── calib_mac.c │ │ │ │ ├── calib_nonce.c │ │ │ │ ├── calib_privwrite.c │ │ │ │ ├── calib_random.c │ │ │ │ ├── calib_read.c │ │ │ │ ├── calib_secureboot.c │ │ │ │ ├── calib_selftest.c │ │ │ │ ├── calib_sha.c │ │ │ │ ├── calib_sign.c │ │ │ │ ├── calib_updateextra.c │ │ │ │ ├── calib_verify.c │ │ │ │ └── calib_write.c │ │ │ ├── crypto │ │ │ │ ├── README.md │ │ │ │ ├── atca_crypto_hw_aes.h │ │ │ │ ├── atca_crypto_hw_aes_cbc.c │ │ │ │ ├── atca_crypto_hw_aes_cbcmac.c │ │ │ │ ├── atca_crypto_hw_aes_ccm.c │ │ │ │ ├── atca_crypto_hw_aes_cmac.c │ │ │ │ ├── atca_crypto_hw_aes_ctr.c │ │ │ │ ├── atca_crypto_pbkdf2.c │ │ │ │ ├── atca_crypto_sw.h │ │ │ │ ├── atca_crypto_sw_ecdsa.c │ │ │ │ ├── atca_crypto_sw_ecdsa.h │ │ │ │ ├── atca_crypto_sw_rand.c │ │ │ │ ├── atca_crypto_sw_rand.h │ │ │ │ ├── atca_crypto_sw_sha1.c │ │ │ │ ├── atca_crypto_sw_sha1.h │ │ │ │ ├── atca_crypto_sw_sha2.c │ │ │ │ ├── atca_crypto_sw_sha2.h │ │ │ │ └── hashes │ │ │ │ │ ├── sha1_routines.c │ │ │ │ │ ├── sha1_routines.h │ │ │ │ │ ├── sha2_routines.c │ │ │ │ │ └── sha2_routines.h │ │ │ ├── cryptoauthlib.h │ │ │ ├── hal │ │ │ │ ├── 90-cryptohid.rules │ │ │ │ ├── README.md │ │ │ │ ├── atca_hal.c │ │ │ │ ├── atca_hal.h │ │ │ │ ├── atca_start_config.h │ │ │ │ ├── atca_start_iface.h │ │ │ │ ├── hal_all_platforms_kit_hidapi.c │ │ │ │ ├── hal_freertos.c │ │ │ │ ├── hal_gpio_harmony.c │ │ │ │ ├── hal_gpio_harmony.h │ │ │ │ ├── hal_i2c_harmony.c │ │ │ │ ├── hal_i2c_harmony.c.orig │ │ │ │ ├── hal_i2c_start.c │ │ │ │ ├── hal_i2c_start.h │ │ │ │ ├── hal_kit_bridge.c │ │ │ │ ├── hal_kit_bridge.h │ │ │ │ ├── hal_linux.c │ │ │ │ ├── hal_linux_i2c_userspace.c │ │ │ │ ├── hal_linux_spi_userspace.c │ │ │ │ ├── hal_sam0_i2c_asf.c │ │ │ │ ├── hal_sam0_i2c_asf.h │ │ │ │ ├── hal_sam_i2c_asf.c │ │ │ │ ├── hal_sam_i2c_asf.h │ │ │ │ ├── hal_sam_timer_asf.c │ │ │ │ ├── hal_spi_harmony.c │ │ │ │ ├── hal_swi_bitbang_harmony.c │ │ │ │ ├── hal_swi_uart.c │ │ │ │ ├── hal_swi_uart.h │ │ │ │ ├── hal_timer_start.c │ │ │ │ ├── hal_uart_harmony.c │ │ │ │ ├── hal_uc3_i2c_asf.c │ │ │ │ ├── hal_uc3_i2c_asf.h │ │ │ │ ├── hal_uc3_timer_asf.c │ │ │ │ ├── hal_windows.c │ │ │ │ ├── kit_phy.h │ │ │ │ ├── kit_protocol.c │ │ │ │ ├── kit_protocol.h │ │ │ │ ├── swi_uart_samd21_asf.c │ │ │ │ ├── swi_uart_samd21_asf.h │ │ │ │ ├── swi_uart_start.c │ │ │ │ └── swi_uart_start.h │ │ │ ├── host │ │ │ │ ├── atca_host.c │ │ │ │ └── atca_host.h │ │ │ ├── jwt │ │ │ │ ├── atca_jwt.c │ │ │ │ └── atca_jwt.h │ │ │ ├── mbedtls │ │ │ │ ├── README.md │ │ │ │ ├── atca_mbedtls_ecdh.c │ │ │ │ ├── atca_mbedtls_ecdsa.c │ │ │ │ ├── atca_mbedtls_wrap.c │ │ │ │ └── atca_mbedtls_wrap.h │ │ │ ├── openssl │ │ │ │ ├── README.md │ │ │ │ └── atca_openssl_interface.c │ │ │ ├── pkcs11 │ │ │ │ ├── cryptoki.h │ │ │ │ ├── pkcs11.h │ │ │ │ ├── pkcs11_attrib.c │ │ │ │ ├── pkcs11_attrib.h │ │ │ │ ├── pkcs11_cert.c │ │ │ │ ├── pkcs11_cert.h │ │ │ │ ├── pkcs11_config.c │ │ │ │ ├── pkcs11_config.h.in │ │ │ │ ├── pkcs11_debug.c │ │ │ │ ├── pkcs11_debug.h │ │ │ │ ├── pkcs11_digest.c │ │ │ │ ├── pkcs11_digest.h │ │ │ │ ├── pkcs11_encrypt.c │ │ │ │ ├── pkcs11_encrypt.h │ │ │ │ ├── pkcs11_find.c │ │ │ │ ├── pkcs11_find.h │ │ │ │ ├── pkcs11_info.c │ │ │ │ ├── pkcs11_info.h │ │ │ │ ├── pkcs11_init.c │ │ │ │ ├── pkcs11_init.h │ │ │ │ ├── pkcs11_key.c │ │ │ │ ├── pkcs11_key.h │ │ │ │ ├── pkcs11_main.c │ │ │ │ ├── pkcs11_mech.c │ │ │ │ ├── pkcs11_mech.h │ │ │ │ ├── pkcs11_object.c │ │ │ │ ├── pkcs11_object.h │ │ │ │ ├── pkcs11_os.c │ │ │ │ ├── pkcs11_os.h │ │ │ │ ├── pkcs11_session.c │ │ │ │ ├── pkcs11_session.h │ │ │ │ ├── pkcs11_signature.c │ │ │ │ ├── pkcs11_signature.h │ │ │ │ ├── pkcs11_slot.c │ │ │ │ ├── pkcs11_slot.h │ │ │ │ ├── pkcs11_token.c │ │ │ │ ├── pkcs11_token.h │ │ │ │ ├── pkcs11_util.c │ │ │ │ ├── pkcs11_util.h │ │ │ │ ├── pkcs11f.h │ │ │ │ └── pkcs11t.h │ │ │ └── wolfssl │ │ │ │ └── atca_wolfssl_interface.c │ │ ├── third_party │ │ │ ├── CMakeLists-mbedtls.txt.in │ │ │ ├── CMakeLists-wolfssl.txt.in │ │ │ ├── hal │ │ │ │ └── esp32 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── hal_core2foraws.c │ │ │ │ │ ├── hal_esp32_i2c.c │ │ │ │ │ └── hal_esp32_timer.c │ │ │ ├── hidapi │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ ├── libusb │ │ │ │ │ └── hid.c │ │ │ │ ├── linux │ │ │ │ │ └── hid.c │ │ │ │ ├── mac │ │ │ │ │ └── hid.c │ │ │ │ └── windows │ │ │ │ │ └── hid.c │ │ │ └── unity │ │ │ │ ├── unity.c │ │ │ │ ├── unity.h │ │ │ │ ├── unity_fixture.c │ │ │ │ ├── unity_fixture.h │ │ │ │ ├── unity_fixture_internals.h │ │ │ │ ├── unity_internals.h │ │ │ │ ├── unity_license.txt │ │ │ │ ├── unity_memory.c │ │ │ │ ├── unity_memory.h │ │ │ │ └── unity_to_junit.py │ │ └── version.txt │ │ ├── esp_cryptoauth_utility │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helper_scripts │ │ │ ├── __init__.py │ │ │ ├── cert2certdef.py │ │ │ ├── cert_sign.py │ │ │ ├── manifest.py │ │ │ └── serial.py │ │ ├── output_files │ │ │ └── README.md │ │ ├── requirements.txt │ │ ├── sample_bins │ │ │ └── secure_cert_mfg.bin │ │ ├── sample_certs │ │ │ ├── sample_signer_cert.pem │ │ │ └── sample_signer_key.pem │ │ └── secure_cert_mfg.py │ │ ├── generate_component.sh │ │ └── port │ │ ├── atca_cfgs_port.c │ │ └── atca_config.h ├── main │ ├── CMakeLists.txt │ ├── atecc608_test.c │ ├── component.mk │ ├── fft.c │ ├── includes │ │ ├── atecc608_test.h │ │ ├── fft.h │ │ ├── mic_fft_test.h │ │ └── sk6812_test.h │ ├── main.c │ ├── mic_fft_test.c │ ├── music.c │ └── sk6812_test.c ├── partitions_16MB.csv ├── platformio.ini └── sdkconfig.defaults ├── LICENSE ├── README.md ├── Smart-Spaces └── README.md └── Smart-Thermostat ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── components ├── core2forAWS │ ├── CMakeLists.txt │ ├── Kconfig │ ├── atecc608 │ │ ├── atecc608.c │ │ └── atecc608.h │ ├── axp192 │ │ ├── axp192.c │ │ ├── axp192.h │ │ ├── axp192_i2c.c │ │ └── axp192_i2c.h │ ├── bm8563 │ │ ├── bm8563.c │ │ └── bm8563.h │ ├── button │ │ ├── button.c │ │ └── button.h │ ├── component.mk │ ├── core2forAWS.c │ ├── core2forAWS.h │ ├── ft6336u │ │ ├── ft6336u.c │ │ └── ft6336u.h │ ├── i2c_bus │ │ ├── i2c_device.c │ │ └── i2c_device.h │ ├── microphone │ │ ├── microphone.c │ │ └── microphone.h │ ├── mpu6886 │ │ ├── mpu6886.c │ │ └── mpu6886.h │ ├── sk6812 │ │ ├── sk6812.c │ │ └── sk6812.h │ ├── speaker │ │ ├── speaker.c │ │ └── speaker.h │ └── tft │ │ ├── disp_driver.c │ │ ├── disp_driver.h │ │ ├── disp_spi.c │ │ ├── disp_spi.h │ │ ├── ili9341.c │ │ ├── ili9341.h │ │ └── lvgl │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── lv_conf.h │ │ └── lvgl │ │ ├── .editorconfig │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug-report.md │ │ │ ├── config.yml │ │ │ └── dev-discussion.md │ │ ├── auto-comment.yml │ │ ├── pull_request_template.md │ │ ├── stale.yml │ │ └── workflows │ │ │ ├── build_micropython.yml │ │ │ ├── ccpp.yml │ │ │ ├── main.yml │ │ │ ├── merge-to-dev.yml │ │ │ └── release.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── component.mk │ │ ├── docs │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CODING_STYLE.md │ │ ├── CONTRIBUTING.md │ │ └── ROADMAP.md │ │ ├── examples │ │ ├── LVGL_Arduino.ino │ │ └── porting │ │ │ ├── lv_port_disp_template.c │ │ │ ├── lv_port_disp_template.h │ │ │ ├── lv_port_fs_template.c │ │ │ ├── lv_port_fs_template.h │ │ │ ├── lv_port_indev_template.c │ │ │ └── lv_port_indev_template.h │ │ ├── library.json │ │ ├── library.properties │ │ ├── lv_conf_template.h │ │ ├── lvgl.h │ │ ├── lvgl.mk │ │ ├── scripts │ │ ├── Doxyfile │ │ ├── built_in_font │ │ │ ├── DejaVuSans.ttf │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── SimSun.woff │ │ │ ├── built_in_font_gen.py │ │ │ └── generate_all.py │ │ ├── code-format.cfg │ │ ├── code-format.sh │ │ ├── cppcheck_run.sh │ │ ├── infer_run.sh │ │ ├── lv_conf_checker.py │ │ └── release │ │ │ ├── com.py │ │ │ ├── dev.py │ │ │ ├── main.py │ │ │ ├── proj.py │ │ │ └── release.py │ │ ├── src │ │ ├── lv_api_map.h │ │ ├── lv_conf_internal.h │ │ ├── lv_conf_kconfig.h │ │ ├── lv_core │ │ │ ├── lv_core.mk │ │ │ ├── lv_disp.c │ │ │ ├── lv_disp.h │ │ │ ├── lv_group.c │ │ │ ├── lv_group.h │ │ │ ├── lv_indev.c │ │ │ ├── lv_indev.h │ │ │ ├── lv_obj.c │ │ │ ├── lv_obj.h │ │ │ ├── lv_obj_style_dec.h │ │ │ ├── lv_refr.c │ │ │ ├── lv_refr.h │ │ │ ├── lv_style.c │ │ │ └── lv_style.h │ │ ├── lv_draw │ │ │ ├── lv_draw.h │ │ │ ├── lv_draw.mk │ │ │ ├── lv_draw_arc.c │ │ │ ├── lv_draw_arc.h │ │ │ ├── lv_draw_blend.c │ │ │ ├── lv_draw_blend.h │ │ │ ├── lv_draw_img.c │ │ │ ├── lv_draw_img.h │ │ │ ├── lv_draw_label.c │ │ │ ├── lv_draw_label.h │ │ │ ├── lv_draw_line.c │ │ │ ├── lv_draw_line.h │ │ │ ├── lv_draw_mask.c │ │ │ ├── lv_draw_mask.h │ │ │ ├── lv_draw_rect.c │ │ │ ├── lv_draw_rect.h │ │ │ ├── lv_draw_triangle.c │ │ │ ├── lv_draw_triangle.h │ │ │ ├── lv_img_buf.c │ │ │ ├── lv_img_buf.h │ │ │ ├── lv_img_cache.c │ │ │ ├── lv_img_cache.h │ │ │ ├── lv_img_decoder.c │ │ │ └── lv_img_decoder.h │ │ ├── lv_font │ │ │ ├── lv_font.c │ │ │ ├── lv_font.h │ │ │ ├── lv_font.mk │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ ├── lv_font_fmt_txt.c │ │ │ ├── lv_font_fmt_txt.h │ │ │ ├── lv_font_loader.c │ │ │ ├── lv_font_loader.h │ │ │ ├── lv_font_montserrat_10.c │ │ │ ├── lv_font_montserrat_12.c │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ ├── lv_font_montserrat_14.c │ │ │ ├── lv_font_montserrat_16.c │ │ │ ├── lv_font_montserrat_18.c │ │ │ ├── lv_font_montserrat_20.c │ │ │ ├── lv_font_montserrat_22.c │ │ │ ├── lv_font_montserrat_24.c │ │ │ ├── lv_font_montserrat_26.c │ │ │ ├── lv_font_montserrat_28.c │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ ├── lv_font_montserrat_30.c │ │ │ ├── lv_font_montserrat_32.c │ │ │ ├── lv_font_montserrat_34.c │ │ │ ├── lv_font_montserrat_36.c │ │ │ ├── lv_font_montserrat_38.c │ │ │ ├── lv_font_montserrat_40.c │ │ │ ├── lv_font_montserrat_42.c │ │ │ ├── lv_font_montserrat_44.c │ │ │ ├── lv_font_montserrat_46.c │ │ │ ├── lv_font_montserrat_48.c │ │ │ ├── lv_font_montserrat_8.c │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ ├── lv_font_unscii_16.c │ │ │ ├── lv_font_unscii_8.c │ │ │ └── lv_symbol_def.h │ │ ├── lv_gpu │ │ │ ├── lv_gpu.mk │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ └── lv_gpu_stm32_dma2d.h │ │ ├── lv_hal │ │ │ ├── lv_hal.h │ │ │ ├── lv_hal.mk │ │ │ ├── lv_hal_disp.c │ │ │ ├── lv_hal_disp.h │ │ │ ├── lv_hal_indev.c │ │ │ ├── lv_hal_indev.h │ │ │ ├── lv_hal_tick.c │ │ │ └── lv_hal_tick.h │ │ ├── lv_misc │ │ │ ├── lv_anim.c │ │ │ ├── lv_anim.h │ │ │ ├── lv_area.c │ │ │ ├── lv_area.h │ │ │ ├── lv_async.c │ │ │ ├── lv_async.h │ │ │ ├── lv_bidi.c │ │ │ ├── lv_bidi.h │ │ │ ├── lv_color.c │ │ │ ├── lv_color.h │ │ │ ├── lv_debug.c │ │ │ ├── lv_debug.h │ │ │ ├── lv_fs.c │ │ │ ├── lv_fs.h │ │ │ ├── lv_gc.c │ │ │ ├── lv_gc.h │ │ │ ├── lv_ll.c │ │ │ ├── lv_ll.h │ │ │ ├── lv_log.c │ │ │ ├── lv_log.h │ │ │ ├── lv_math.c │ │ │ ├── lv_math.h │ │ │ ├── lv_mem.c │ │ │ ├── lv_mem.h │ │ │ ├── lv_misc.mk │ │ │ ├── lv_printf.c │ │ │ ├── lv_printf.h │ │ │ ├── lv_task.c │ │ │ ├── lv_task.h │ │ │ ├── lv_templ.c │ │ │ ├── lv_templ.h │ │ │ ├── lv_txt.c │ │ │ ├── lv_txt.h │ │ │ ├── lv_txt_ap.c │ │ │ ├── lv_txt_ap.h │ │ │ ├── lv_types.h │ │ │ ├── lv_utils.c │ │ │ └── lv_utils.h │ │ ├── lv_themes │ │ │ ├── lv_theme.c │ │ │ ├── lv_theme.h │ │ │ ├── lv_theme_empty.c │ │ │ ├── lv_theme_empty.h │ │ │ ├── lv_theme_material.c │ │ │ ├── lv_theme_material.h │ │ │ ├── lv_theme_mono.c │ │ │ ├── lv_theme_mono.h │ │ │ ├── lv_theme_template.c │ │ │ ├── lv_theme_template.h │ │ │ └── lv_themes.mk │ │ ├── lv_widgets │ │ │ ├── lv_arc.c │ │ │ ├── lv_arc.h │ │ │ ├── lv_bar.c │ │ │ ├── lv_bar.h │ │ │ ├── lv_btn.c │ │ │ ├── lv_btn.h │ │ │ ├── lv_btnmatrix.c │ │ │ ├── lv_btnmatrix.h │ │ │ ├── lv_calendar.c │ │ │ ├── lv_calendar.h │ │ │ ├── lv_canvas.c │ │ │ ├── lv_canvas.h │ │ │ ├── lv_chart.c │ │ │ ├── lv_chart.h │ │ │ ├── lv_checkbox.c │ │ │ ├── lv_checkbox.h │ │ │ ├── lv_cont.c │ │ │ ├── lv_cont.h │ │ │ ├── lv_cpicker.c │ │ │ ├── lv_cpicker.h │ │ │ ├── lv_dropdown.c │ │ │ ├── lv_dropdown.h │ │ │ ├── lv_gauge.c │ │ │ ├── lv_gauge.h │ │ │ ├── lv_img.c │ │ │ ├── lv_img.h │ │ │ ├── lv_imgbtn.c │ │ │ ├── lv_imgbtn.h │ │ │ ├── lv_keyboard.c │ │ │ ├── lv_keyboard.h │ │ │ ├── lv_label.c │ │ │ ├── lv_label.h │ │ │ ├── lv_led.c │ │ │ ├── lv_led.h │ │ │ ├── lv_line.c │ │ │ ├── lv_line.h │ │ │ ├── lv_linemeter.c │ │ │ ├── lv_linemeter.h │ │ │ ├── lv_list.c │ │ │ ├── lv_list.h │ │ │ ├── lv_msgbox.c │ │ │ ├── lv_msgbox.h │ │ │ ├── lv_objmask.c │ │ │ ├── lv_objmask.h │ │ │ ├── lv_objx_templ.c │ │ │ ├── lv_objx_templ.h │ │ │ ├── lv_page.c │ │ │ ├── lv_page.h │ │ │ ├── lv_roller.c │ │ │ ├── lv_roller.h │ │ │ ├── lv_slider.c │ │ │ ├── lv_slider.h │ │ │ ├── lv_spinbox.c │ │ │ ├── lv_spinbox.h │ │ │ ├── lv_spinner.c │ │ │ ├── lv_spinner.h │ │ │ ├── lv_switch.c │ │ │ ├── lv_switch.h │ │ │ ├── lv_table.c │ │ │ ├── lv_table.h │ │ │ ├── lv_tabview.c │ │ │ ├── lv_tabview.h │ │ │ ├── lv_textarea.c │ │ │ ├── lv_textarea.h │ │ │ ├── lv_tileview.c │ │ │ ├── lv_tileview.h │ │ │ ├── lv_widgets.mk │ │ │ ├── lv_win.c │ │ │ └── lv_win.h │ │ └── lvgl.h │ │ ├── tests │ │ ├── Makefile │ │ ├── build.py │ │ ├── font_1.fnt │ │ ├── font_2.fnt │ │ ├── font_3.fnt │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── lv_test_assert.c │ │ ├── lv_test_assert.h │ │ ├── lv_test_conf.h │ │ ├── lv_test_core │ │ │ ├── lv_test_core.c │ │ │ ├── lv_test_core.h │ │ │ ├── lv_test_font_loader.c │ │ │ ├── lv_test_font_loader.h │ │ │ ├── lv_test_obj.c │ │ │ ├── lv_test_obj.h │ │ │ ├── lv_test_style.c │ │ │ └── lv_test_style.h │ │ ├── lv_test_fonts │ │ │ ├── font_1.c │ │ │ ├── font_2.c │ │ │ └── font_3.c │ │ ├── lv_test_main.c │ │ ├── lv_test_ref_imgs │ │ │ └── lv_test_img32_label_1.png │ │ └── lv_test_widgets │ │ │ ├── lv_test_label.c │ │ │ └── lv_test_label.h │ │ └── zephyr │ │ └── module.yml ├── esp-aws-iot │ ├── CMakeLists.txt │ ├── Kconfig │ ├── LICENSE │ ├── README.md │ ├── aws-iot-device-sdk-embedded-C │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── CppUTestMakefileWorker.mk │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── PortingGuide.md │ │ ├── README.md │ │ ├── doc │ │ │ ├── architecture.png │ │ │ ├── architecture.txt │ │ │ ├── config │ │ │ │ ├── common │ │ │ │ ├── html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── header.html │ │ │ │ │ └── style.css │ │ │ │ ├── layout_library.xml │ │ │ │ ├── layout_main.xml │ │ │ │ ├── main │ │ │ │ └── mqtt │ │ │ └── lib │ │ │ │ └── mqtt.txt │ │ ├── external_libs │ │ │ └── jsmn │ │ │ │ ├── jsmn.c │ │ │ │ └── jsmn.h │ │ ├── filterGcov.sh │ │ ├── include │ │ │ ├── aws_iot_error.h │ │ │ ├── aws_iot_jobs_interface.h │ │ │ ├── aws_iot_jobs_json.h │ │ │ ├── aws_iot_jobs_topics.h │ │ │ ├── aws_iot_jobs_types.h │ │ │ ├── aws_iot_json_utils.h │ │ │ ├── aws_iot_log.h │ │ │ ├── aws_iot_mqtt_client.h │ │ │ ├── aws_iot_mqtt_client_common_internal.h │ │ │ ├── aws_iot_mqtt_client_interface.h │ │ │ ├── aws_iot_shadow_actions.h │ │ │ ├── aws_iot_shadow_interface.h │ │ │ ├── aws_iot_shadow_json.h │ │ │ ├── aws_iot_shadow_json_data.h │ │ │ ├── aws_iot_shadow_key.h │ │ │ ├── aws_iot_shadow_records.h │ │ │ ├── aws_iot_version.h │ │ │ ├── network_interface.h │ │ │ ├── threads_interface.h │ │ │ └── timer_interface.h │ │ ├── platform │ │ │ └── linux │ │ │ │ ├── common │ │ │ │ ├── timer.c │ │ │ │ └── timer_platform.h │ │ │ │ ├── mbedtls │ │ │ │ ├── network_mbedtls_wrapper.c │ │ │ │ └── network_platform.h │ │ │ │ └── pthread │ │ │ │ ├── threads_platform.h │ │ │ │ └── threads_pthread_wrapper.c │ │ ├── samples │ │ │ ├── README.md │ │ │ └── linux │ │ │ │ ├── jobs_sample │ │ │ │ ├── Makefile │ │ │ │ ├── aws_iot_config.h │ │ │ │ └── jobs_sample.c │ │ │ │ ├── shadow_sample │ │ │ │ ├── Makefile │ │ │ │ ├── aws_iot_config.h │ │ │ │ └── shadow_sample.c │ │ │ │ ├── shadow_sample_console_echo │ │ │ │ ├── Makefile │ │ │ │ ├── aws_iot_config.h │ │ │ │ └── shadow_console_echo.c │ │ │ │ ├── subscribe_publish_library_sample │ │ │ │ ├── Makefile │ │ │ │ ├── aws_iot_config.h │ │ │ │ └── subscribe_publish_library_sample.c │ │ │ │ └── subscribe_publish_sample │ │ │ │ ├── Makefile │ │ │ │ ├── aws_iot_config.h │ │ │ │ └── subscribe_publish_sample.c │ │ ├── src │ │ │ ├── aws_iot_jobs_interface.c │ │ │ ├── aws_iot_jobs_json.c │ │ │ ├── aws_iot_jobs_topics.c │ │ │ ├── aws_iot_jobs_types.c │ │ │ ├── aws_iot_json_utils.c │ │ │ ├── aws_iot_mqtt_client.c │ │ │ ├── aws_iot_mqtt_client_common_internal.c │ │ │ ├── aws_iot_mqtt_client_connect.c │ │ │ ├── aws_iot_mqtt_client_publish.c │ │ │ ├── aws_iot_mqtt_client_subscribe.c │ │ │ ├── aws_iot_mqtt_client_unsubscribe.c │ │ │ ├── aws_iot_mqtt_client_yield.c │ │ │ ├── aws_iot_shadow.c │ │ │ ├── aws_iot_shadow_actions.c │ │ │ ├── aws_iot_shadow_json.c │ │ │ └── aws_iot_shadow_records.c │ │ └── tests │ │ │ ├── README.md │ │ │ ├── integration │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── include │ │ │ │ ├── aws_iot_config.h │ │ │ │ ├── aws_iot_integ_tests_config.h │ │ │ │ └── aws_iot_test_integration_common.h │ │ │ ├── multithreadingTest │ │ │ │ └── aws_iot_test_multithreading_validation.c │ │ │ └── src │ │ │ │ ├── aws_iot_test_auto_reconnect.c │ │ │ │ ├── aws_iot_test_basic_connectivity.c │ │ │ │ ├── aws_iot_test_integration_runner.c │ │ │ │ ├── aws_iot_test_jobs_api.c │ │ │ │ └── aws_iot_test_multiple_clients.c │ │ │ └── unit │ │ │ ├── README.md │ │ │ ├── include │ │ │ ├── aws_iot_config.h │ │ │ ├── aws_iot_tests_unit_helper_functions.h │ │ │ └── aws_iot_tests_unit_shadow_helper.h │ │ │ ├── src │ │ │ ├── aws_iot_tests_unit_common_tests.cpp │ │ │ ├── aws_iot_tests_unit_common_tests_helper.c │ │ │ ├── aws_iot_tests_unit_connect.cpp │ │ │ ├── aws_iot_tests_unit_connect_helper.c │ │ │ ├── aws_iot_tests_unit_disconnect.cpp │ │ │ ├── aws_iot_tests_unit_disconnect_helper.c │ │ │ ├── aws_iot_tests_unit_helper_functions.c │ │ │ ├── aws_iot_tests_unit_jobs.cpp │ │ │ ├── aws_iot_tests_unit_jobs_interface.c │ │ │ ├── aws_iot_tests_unit_jobs_json.c │ │ │ ├── aws_iot_tests_unit_jobs_topics.c │ │ │ ├── aws_iot_tests_unit_jobs_types.c │ │ │ ├── aws_iot_tests_unit_json_utils.cpp │ │ │ ├── aws_iot_tests_unit_json_utils_helper.c │ │ │ ├── aws_iot_tests_unit_publish.cpp │ │ │ ├── aws_iot_tests_unit_publish_helper.c │ │ │ ├── aws_iot_tests_unit_runner.cpp │ │ │ ├── aws_iot_tests_unit_shadow_action.cpp │ │ │ ├── aws_iot_tests_unit_shadow_action_helper.c │ │ │ ├── aws_iot_tests_unit_shadow_delta.cpp │ │ │ ├── aws_iot_tests_unit_shadow_delta_helper.c │ │ │ ├── aws_iot_tests_unit_shadow_json_builder.cpp │ │ │ ├── aws_iot_tests_unit_shadow_json_builder_helper.c │ │ │ ├── aws_iot_tests_unit_shadow_null_fields.cpp │ │ │ ├── aws_iot_tests_unit_shadow_null_fields_helper.c │ │ │ ├── aws_iot_tests_unit_subscribe.cpp │ │ │ ├── aws_iot_tests_unit_subscribe_helper.c │ │ │ ├── aws_iot_tests_unit_unsubscribe.cpp │ │ │ ├── aws_iot_tests_unit_unsubscribe_helper.c │ │ │ ├── aws_iot_tests_unit_yield.cpp │ │ │ └── aws_iot_tests_unit_yield_helper.c │ │ │ └── tls_mock │ │ │ ├── aws_iot_tests_unit_mock_tls.c │ │ │ ├── aws_iot_tests_unit_mock_tls_params.c │ │ │ ├── aws_iot_tests_unit_mock_tls_params.h │ │ │ └── network_platform.h │ ├── component.mk │ ├── examples │ │ ├── README.md │ │ ├── subscribe_publish │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.projbuild │ │ │ │ ├── certs │ │ │ │ │ └── README.md │ │ │ │ ├── component.mk │ │ │ │ └── subscribe_publish_sample.c │ │ │ ├── sdkconfig.ci │ │ │ └── sdkconfig.defaults │ │ └── thing_shadow │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.projbuild │ │ │ ├── certs │ │ │ │ └── README.md │ │ │ ├── component.mk │ │ │ └── thing_shadow_sample.c │ │ │ ├── sdkconfig.ci │ │ │ └── sdkconfig.defaults │ └── port │ │ ├── include │ │ ├── aws_iot_config.h │ │ ├── aws_iot_log.h │ │ ├── network_platform.h │ │ ├── threads_platform.h │ │ └── timer_platform.h │ │ ├── network_mbedtls_wrapper.c │ │ ├── threads_freertos.c │ │ └── timer.c └── esp-cryptoauthlib │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.md │ ├── component.mk │ ├── cryptoauthlib │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── README.md │ │ ├── api_206a │ │ │ ├── api_206a.c │ │ │ └── api_206a.h │ │ ├── ip_protection │ │ │ ├── README.md │ │ │ ├── symmetric_authentication.c │ │ │ └── symmetric_authentication.h │ │ ├── pkcs11 │ │ │ ├── README.md │ │ │ ├── cryptoauthlib.conf.in │ │ │ ├── example_cert_chain.c │ │ │ ├── example_cert_chain.h │ │ │ ├── example_pkcs11_config.c │ │ │ ├── slot.conf.tmpl │ │ │ └── trust_pkcs11_config.c │ │ ├── secure_boot │ │ │ ├── README.md │ │ │ ├── io_protection_key.h │ │ │ ├── secure_boot.c │ │ │ ├── secure_boot.h │ │ │ └── secure_boot_memory.h │ │ └── tng │ │ │ ├── readme.md │ │ │ ├── tflxtls_cert_def_4_device.c │ │ │ ├── tflxtls_cert_def_4_device.h │ │ │ ├── tng_atca.c │ │ │ ├── tng_atca.h │ │ │ ├── tng_atcacert_client.c │ │ │ ├── tng_atcacert_client.h │ │ │ ├── tng_root_cert.c │ │ │ ├── tng_root_cert.h │ │ │ ├── tnglora_cert_def_1_signer.c │ │ │ ├── tnglora_cert_def_1_signer.h │ │ │ ├── tnglora_cert_def_2_device.c │ │ │ ├── tnglora_cert_def_2_device.h │ │ │ ├── tnglora_cert_def_4_device.c │ │ │ ├── tnglora_cert_def_4_device.h │ │ │ ├── tngtls_cert_def_1_signer.c │ │ │ ├── tngtls_cert_def_1_signer.h │ │ │ ├── tngtls_cert_def_2_device.c │ │ │ ├── tngtls_cert_def_2_device.h │ │ │ ├── tngtls_cert_def_3_device.c │ │ │ └── tngtls_cert_def_3_device.h │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── atca_basic.c │ │ ├── atca_basic.h │ │ ├── atca_bool.h │ │ ├── atca_cfgs.c │ │ ├── atca_cfgs.h │ │ ├── atca_compiler.h │ │ ├── atca_config.h.in │ │ ├── atca_debug.c │ │ ├── atca_debug.h │ │ ├── atca_device.c │ │ ├── atca_device.h │ │ ├── atca_devtypes.h │ │ ├── atca_helpers.c │ │ ├── atca_helpers.h │ │ ├── atca_iface.c │ │ ├── atca_iface.h │ │ ├── atca_status.h │ │ ├── atca_utils_sizes.c │ │ ├── atca_version.h │ │ ├── atcacert │ │ │ ├── atcacert.h │ │ │ ├── atcacert_client.c │ │ │ ├── atcacert_client.h │ │ │ ├── atcacert_date.c │ │ │ ├── atcacert_date.h │ │ │ ├── atcacert_def.c │ │ │ ├── atcacert_def.h │ │ │ ├── atcacert_der.c │ │ │ ├── atcacert_der.h │ │ │ ├── atcacert_host_hw.c │ │ │ ├── atcacert_host_hw.h │ │ │ ├── atcacert_host_sw.c │ │ │ ├── atcacert_host_sw.h │ │ │ ├── atcacert_pem.c │ │ │ └── atcacert_pem.h │ │ ├── calib │ │ │ ├── README.md │ │ │ ├── calib_aes.c │ │ │ ├── calib_aes_gcm.c │ │ │ ├── calib_aes_gcm.h │ │ │ ├── calib_basic.c │ │ │ ├── calib_basic.h │ │ │ ├── calib_checkmac.c │ │ │ ├── calib_command.c │ │ │ ├── calib_command.h │ │ │ ├── calib_counter.c │ │ │ ├── calib_derivekey.c │ │ │ ├── calib_ecdh.c │ │ │ ├── calib_execution.c │ │ │ ├── calib_execution.h │ │ │ ├── calib_gendig.c │ │ │ ├── calib_genkey.c │ │ │ ├── calib_helpers.c │ │ │ ├── calib_hmac.c │ │ │ ├── calib_info.c │ │ │ ├── calib_kdf.c │ │ │ ├── calib_lock.c │ │ │ ├── calib_mac.c │ │ │ ├── calib_nonce.c │ │ │ ├── calib_privwrite.c │ │ │ ├── calib_random.c │ │ │ ├── calib_read.c │ │ │ ├── calib_secureboot.c │ │ │ ├── calib_selftest.c │ │ │ ├── calib_sha.c │ │ │ ├── calib_sign.c │ │ │ ├── calib_updateextra.c │ │ │ ├── calib_verify.c │ │ │ └── calib_write.c │ │ ├── crypto │ │ │ ├── README.md │ │ │ ├── atca_crypto_hw_aes.h │ │ │ ├── atca_crypto_hw_aes_cbc.c │ │ │ ├── atca_crypto_hw_aes_cbcmac.c │ │ │ ├── atca_crypto_hw_aes_ccm.c │ │ │ ├── atca_crypto_hw_aes_cmac.c │ │ │ ├── atca_crypto_hw_aes_ctr.c │ │ │ ├── atca_crypto_pbkdf2.c │ │ │ ├── atca_crypto_sw.h │ │ │ ├── atca_crypto_sw_ecdsa.c │ │ │ ├── atca_crypto_sw_ecdsa.h │ │ │ ├── atca_crypto_sw_rand.c │ │ │ ├── atca_crypto_sw_rand.h │ │ │ ├── atca_crypto_sw_sha1.c │ │ │ ├── atca_crypto_sw_sha1.h │ │ │ ├── atca_crypto_sw_sha2.c │ │ │ ├── atca_crypto_sw_sha2.h │ │ │ └── hashes │ │ │ │ ├── sha1_routines.c │ │ │ │ ├── sha1_routines.h │ │ │ │ ├── sha2_routines.c │ │ │ │ └── sha2_routines.h │ │ ├── cryptoauthlib.h │ │ ├── hal │ │ │ ├── 90-cryptohid.rules │ │ │ ├── README.md │ │ │ ├── atca_hal.c │ │ │ ├── atca_hal.h │ │ │ ├── atca_start_config.h │ │ │ ├── atca_start_iface.h │ │ │ ├── hal_all_platforms_kit_hidapi.c │ │ │ ├── hal_freertos.c │ │ │ ├── hal_gpio_harmony.c │ │ │ ├── hal_gpio_harmony.h │ │ │ ├── hal_i2c_harmony.c │ │ │ ├── hal_i2c_harmony.c.orig │ │ │ ├── hal_i2c_start.c │ │ │ ├── hal_i2c_start.h │ │ │ ├── hal_kit_bridge.c │ │ │ ├── hal_kit_bridge.h │ │ │ ├── hal_linux.c │ │ │ ├── hal_linux_i2c_userspace.c │ │ │ ├── hal_linux_spi_userspace.c │ │ │ ├── hal_sam0_i2c_asf.c │ │ │ ├── hal_sam0_i2c_asf.h │ │ │ ├── hal_sam_i2c_asf.c │ │ │ ├── hal_sam_i2c_asf.h │ │ │ ├── hal_sam_timer_asf.c │ │ │ ├── hal_spi_harmony.c │ │ │ ├── hal_swi_bitbang_harmony.c │ │ │ ├── hal_swi_uart.c │ │ │ ├── hal_swi_uart.h │ │ │ ├── hal_timer_start.c │ │ │ ├── hal_uart_harmony.c │ │ │ ├── hal_uc3_i2c_asf.c │ │ │ ├── hal_uc3_i2c_asf.h │ │ │ ├── hal_uc3_timer_asf.c │ │ │ ├── hal_windows.c │ │ │ ├── kit_phy.h │ │ │ ├── kit_protocol.c │ │ │ ├── kit_protocol.h │ │ │ ├── swi_uart_samd21_asf.c │ │ │ ├── swi_uart_samd21_asf.h │ │ │ ├── swi_uart_start.c │ │ │ └── swi_uart_start.h │ │ ├── host │ │ │ ├── atca_host.c │ │ │ └── atca_host.h │ │ ├── jwt │ │ │ ├── atca_jwt.c │ │ │ └── atca_jwt.h │ │ ├── mbedtls │ │ │ ├── README.md │ │ │ ├── atca_mbedtls_ecdh.c │ │ │ ├── atca_mbedtls_ecdsa.c │ │ │ ├── atca_mbedtls_wrap.c │ │ │ └── atca_mbedtls_wrap.h │ │ ├── openssl │ │ │ ├── README.md │ │ │ └── atca_openssl_interface.c │ │ ├── pkcs11 │ │ │ ├── cryptoki.h │ │ │ ├── pkcs11.h │ │ │ ├── pkcs11_attrib.c │ │ │ ├── pkcs11_attrib.h │ │ │ ├── pkcs11_cert.c │ │ │ ├── pkcs11_cert.h │ │ │ ├── pkcs11_config.c │ │ │ ├── pkcs11_config.h.in │ │ │ ├── pkcs11_debug.c │ │ │ ├── pkcs11_debug.h │ │ │ ├── pkcs11_digest.c │ │ │ ├── pkcs11_digest.h │ │ │ ├── pkcs11_encrypt.c │ │ │ ├── pkcs11_encrypt.h │ │ │ ├── pkcs11_find.c │ │ │ ├── pkcs11_find.h │ │ │ ├── pkcs11_info.c │ │ │ ├── pkcs11_info.h │ │ │ ├── pkcs11_init.c │ │ │ ├── pkcs11_init.h │ │ │ ├── pkcs11_key.c │ │ │ ├── pkcs11_key.h │ │ │ ├── pkcs11_main.c │ │ │ ├── pkcs11_mech.c │ │ │ ├── pkcs11_mech.h │ │ │ ├── pkcs11_object.c │ │ │ ├── pkcs11_object.h │ │ │ ├── pkcs11_os.c │ │ │ ├── pkcs11_os.h │ │ │ ├── pkcs11_session.c │ │ │ ├── pkcs11_session.h │ │ │ ├── pkcs11_signature.c │ │ │ ├── pkcs11_signature.h │ │ │ ├── pkcs11_slot.c │ │ │ ├── pkcs11_slot.h │ │ │ ├── pkcs11_token.c │ │ │ ├── pkcs11_token.h │ │ │ ├── pkcs11_util.c │ │ │ ├── pkcs11_util.h │ │ │ ├── pkcs11f.h │ │ │ └── pkcs11t.h │ │ └── wolfssl │ │ │ └── atca_wolfssl_interface.c │ ├── third_party │ │ ├── CMakeLists-mbedtls.txt.in │ │ ├── CMakeLists-wolfssl.txt.in │ │ ├── hal │ │ │ └── esp32 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── hal_core2foraws.c │ │ │ │ ├── hal_esp32_i2c.c │ │ │ │ └── hal_esp32_timer.c │ │ ├── hidapi │ │ │ ├── LICENSE-bsd.txt │ │ │ ├── LICENSE-orig.txt │ │ │ ├── LICENSE.txt │ │ │ ├── hidapi │ │ │ │ └── hidapi.h │ │ │ ├── libusb │ │ │ │ └── hid.c │ │ │ ├── linux │ │ │ │ └── hid.c │ │ │ ├── mac │ │ │ │ └── hid.c │ │ │ └── windows │ │ │ │ └── hid.c │ │ └── unity │ │ │ ├── unity.c │ │ │ ├── unity.h │ │ │ ├── unity_fixture.c │ │ │ ├── unity_fixture.h │ │ │ ├── unity_fixture_internals.h │ │ │ ├── unity_internals.h │ │ │ ├── unity_license.txt │ │ │ ├── unity_memory.c │ │ │ ├── unity_memory.h │ │ │ └── unity_to_junit.py │ └── version.txt │ ├── esp_cryptoauth_utility │ ├── LICENSE │ ├── README.md │ ├── helper_scripts │ │ ├── __init__.py │ │ ├── cert2certdef.py │ │ ├── cert_sign.py │ │ ├── manifest.py │ │ └── serial.py │ ├── output_files │ │ └── README.md │ ├── requirements.txt │ ├── sample_bins │ │ └── secure_cert_mfg.bin │ ├── sample_certs │ │ ├── sample_signer_cert.pem │ │ └── sample_signer_key.pem │ └── secure_cert_mfg.py │ ├── generate_component.sh │ └── port │ ├── atca_cfgs_port.c │ └── atca_config.h ├── input.json ├── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── certs │ ├── README.md │ ├── aws-root-ca.pem │ ├── certificate.pem.crt │ └── private.pem.key ├── fft.c ├── includes │ ├── fft.h │ ├── ui.h │ └── wifi.h ├── main.c ├── ui.c └── wifi.c ├── partitions_16MB.csv ├── platformio.ini └── sdkconfig.defaults /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/LICENSE -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/Makefile -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/alexa_equalizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/alexa_equalizer/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/alexa_equalizer/alexa_equalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/alexa_equalizer/alexa_equalizer.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/alexa_equalizer/alexa_equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/alexa_equalizer/alexa_equalizer.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/alexa_equalizer/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/alexa_equalizer/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_cloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_cloud/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_cloud/app_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_cloud/app_cloud.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_cloud/app_cloud_rainmaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_cloud/app_cloud_rainmaker.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_cloud/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_cloud/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_smart_home/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_smart_home/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_smart_home/app_smart_home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_smart_home/app_smart_home.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_smart_home/app_smart_home.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_smart_home/app_smart_home.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/app_smart_home/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/app_smart_home/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/dsp_driver/hollow_driver/dsp_driver/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_SRCDIRS := . 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/dsp_driver/hollow_driver/dsp_firmware/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_EMBED_FILES := firmware.bin 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/dsp_driver/hollow_driver/dsp_firmware/firmware.bin: -------------------------------------------------------------------------------- 1 | //Your_Firmware_Goes_Here 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/esp_codec/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/esp_codec/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/include/audio_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/include/audio_board.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/include/esxxx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/include/esxxx_common.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/include/media_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/include/media_hal.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/include/va_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/include/va_board.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/include/va_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/include/va_dsp.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/include/va_dsp_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/include/va_dsp_hal.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/led_driver/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/led_driver/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/media_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/media_hal.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_hal/va_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_hal/va_dsp.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_pipeline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_pipeline/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_pipeline/audio_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_pipeline/audio_pipeline.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_pipeline/audio_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_pipeline/audio_pipeline.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_pipeline/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_pipeline/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/abstract_rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/abstract_rb.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/basic_rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/basic_rb.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/common_rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/common_rb.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/diag_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/diag_cli.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/linked_list.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/m3u8_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/m3u8_parser.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/pls_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/pls_parser.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/scli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/scli.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/special_rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/special_rb.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/include/utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/abstract_rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/abstract_rb.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/basic_rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/basic_rb.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/diag_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/diag_cli.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/esp_audio_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/esp_audio_mem.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/esp_audio_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/esp_audio_nvs.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/esp_audio_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/esp_audio_pm.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/linked_list.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/m3u8_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/m3u8_parser.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/pls_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/pls_parser.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/scli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/scli.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/special_rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/special_rb.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/audio_utils/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/audio_utils/src/utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_player/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_player/basic_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_player/basic_player.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_player/basic_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_player/basic_player.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_player/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_recorder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_recorder/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_recorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_recorder/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_recorder/basic_recorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_recorder/basic_recorder.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_recorder/basic_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/basic_recorder/basic_recorder.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/basic_recorder/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/include/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/include/bluetooth.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/src/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/src/bluetooth.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/src/bluetooth_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/src/bluetooth_priv.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/src/bt_app_av.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/src/bt_app_av.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/bluetooth/src/bt_app_av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/bluetooth/src/bt_app_av.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/codecs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/codecs/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/codecs/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/codecs/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/codecs/include/audio_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/codecs/include/audio_codec.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/codecs/include/esp_equalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/codecs/include/esp_equalizer.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/codecs/include/resampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/codecs/include/resampling.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/codecs/lib/libcodecs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/codecs/lib/libcodecs.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/common/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/common/app_prov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/common/app_prov.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/common/app_prov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/common/app_prov.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/common/app_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/common/app_wifi.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/common/app_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/common/app_wifi.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/common/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/common/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/Kconfig -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/atecc608/atecc608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/atecc608/atecc608.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/atecc608/atecc608.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/atecc608/atecc608.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192_i2c.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/axp192/axp192_i2c.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/bm8563/bm8563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/bm8563/bm8563.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/bm8563/bm8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/bm8563/bm8563.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/button/button.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/button/button.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/core2forAWS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/core2forAWS.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/core2forAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/core2forAWS.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/ft6336u/ft6336u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/ft6336u/ft6336u.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/ft6336u/ft6336u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/ft6336u/ft6336u.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/i2c_bus/i2c_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/i2c_bus/i2c_device.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/i2c_bus/i2c_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/i2c_bus/i2c_device.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/mpu6886/mpu6886.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/mpu6886/mpu6886.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/mpu6886/mpu6886.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/mpu6886/mpu6886.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/sk6812/sk6812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/sk6812/sk6812.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/sk6812/sk6812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/sk6812/sk6812.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_driver.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_driver.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_spi.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/disp_spi.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/ili9341.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/ili9341.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lv_conf.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/Kconfig -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/lvgl.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/core2forAWS/tft/lvgl/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/custom_player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/custom_player/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/custom_player/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/custom_player/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/custom_player/custom_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/custom_player/custom_player.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/custom_player/custom_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/custom_player/custom_player.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/dialogflow-proto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/dialogflow-proto/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/dialogflow-proto/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/dialogflow-proto/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/dialogflow-proto/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/dialogflow-proto/proto/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-downmix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-downmix/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-downmix/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-downmix/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-downmix/include/esp_downmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-downmix/include/esp_downmix.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-downmix/lib/libesp-downmix.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-downmix/lib/libesp-downmix.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-ssdp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-ssdp/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-ssdp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-ssdp/LICENSE -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-ssdp/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-ssdp/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-ssdp/include/ssdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-ssdp/include/ssdp.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp-ssdp/lib/libesp-ssdp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp-ssdp/lib/libesp-ssdp.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp_httpd_ota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp_httpd_ota/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp_httpd_ota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp_httpd_ota/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp_httpd_ota/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp_httpd_ota/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/esp_httpd_ota/src/esp_httpd_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/esp_httpd_ota/src/esp_httpd_ota.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/proto-c/http.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/proto-c/http.pb-c.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/proto-c/http.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/proto-c/http.pb-c.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/proto-c/latlng.pb-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/proto-c/latlng.pb-c.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/proto-c/latlng.pb-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/proto-c/latlng.pb-c.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/gva-proto/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/gva-proto/proto/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/Kconfig -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/httpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/httpc.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/httpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/httpc.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/test_host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/test_host/Makefile -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/test_host/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/httpc/test_host/main.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/httpc/test_host/sdkconfig.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/json_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/json_parser/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/json_parser/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/json_parser/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/json_parser/json_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/json_parser/json_parser.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/json_parser/json_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/json_parser/json_parser.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/media_hal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/media_hal/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/media_hal/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/media_hal/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/media_hal/media_hal_playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/media_hal/media_hal_playback.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/media_hal/media_hal_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/media_hal/media_hal_playback.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/json_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/json_utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/json_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/json_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/network_diagnostics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/network_diagnostics.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/network_diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/network_diagnostics.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/str_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/str_utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/str_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/str_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/strdup.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_button.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_button.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_diag_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_diag_cli.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_diag_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_diag_cli.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_file_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_file_utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_file_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_led.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_led.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_mem_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_mem_utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_mem_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_mem_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_nvs_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_nvs_utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_nvs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_nvs_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_rb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_rb_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_time_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_time_utils.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/va_time_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/va_time_utils.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/wifi_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/wifi_cli.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/misc/wifi_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/misc/wifi_cli.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/multipart_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/multipart_parser/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/multipart_parser/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/multipart_parser/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/multipart_parser/src/multipart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/multipart_parser/src/multipart.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/qrcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/qrcode/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/qrcode/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/qrcode/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/qrcode/include/qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/qrcode/include/qrcode.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/qrcode/src/qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/qrcode/src/qrcode.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/qrcode/src/qrcodegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/qrcode/src/qrcodegen.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/qrcode/src/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/qrcode/src/qrcodegen.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sh2lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/sh2lib/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sh2lib/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sh2lib/sh2lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/sh2lib/sh2lib.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sh2lib/sh2lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/sh2lib/sh2lib.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/speech_recog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/speech_recog/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/speech_recog/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/speech_recog/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/speech_recog/include/esp_wwe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/speech_recog/include/esp_wwe.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/speech_recog/lib/libdl_lib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/speech_recog/lib/libdl_lib.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/speech_recog/lib/libesp_wwe.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/speech_recog/lib/libesp_wwe.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/speech_recog/lib/libnn_model.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/speech_recog/lib/libnn_model.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/audio_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/audio_stream.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/audio_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/audio_stream.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/fs_stream/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/fs_stream/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/fs_stream/fs_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/fs_stream/fs_stream.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/fs_stream/fs_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/fs_stream/fs_stream.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/http_stream/http_hls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/http_stream/http_hls.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/http_stream/http_hls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/http_stream/http_hls.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/http_stream/http_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/http_stream/http_stream.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/http_stream/http_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/http_stream/http_stream.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/i2s_stream/i2s_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/i2s_stream/i2s_stream.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/streams/i2s_stream/i2s_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/streams/i2s_stream/i2s_stream.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sys_playback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/sys_playback/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sys_playback/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sys_playback/sys_playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/sys_playback/sys_playback.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/sys_playback/sys_playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/sys_playback/sys_playback.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/uuid-gen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/uuid-gen/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/uuid-gen/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/uuid-gen/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/uuid-gen/include/UUIDGeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/uuid-gen/include/UUIDGeneration.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/uuid-gen/src/UUIDGeneration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/uuid-gen/src/UUIDGeneration.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/include/aia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/include/aia.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/include/alerts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/include/alerts.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/include/gva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/include/gva.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/include/tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/include/tone.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/lib/libaia.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/lib/libaia.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/lib/libavs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/lib/libavs.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/components/voice_assistant/lib/libgva.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/components/voice_assistant/lib/libgva.a -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/esp_alexa_credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/esp_alexa_credentials/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/esp_alexa_credentials/mfg_config.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/esp_alexa_credentials/mfg_config.csv -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/flash_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/flash_certificates.py -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/CMakeLists.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/Kconfig.projbuild -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/app_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/app_auth.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/app_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/app_auth.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/app_main.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/app_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/app_mqtt.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/app_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/app_mqtt.h -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/app_va_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/app_va_cb.c -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/certs/README.md -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/certs/mfg_config.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/certs/mfg_config.csv -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/main/component.mk -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/partitions.csv -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/partitions_4mb_flash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/partitions_4mb_flash.csv -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/partitions_spiffs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/partitions_spiffs.csv -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/patent_disclaimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/patent_disclaimer.txt -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/platformio.ini -------------------------------------------------------------------------------- /Alexa_for_IoT-Intro/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Alexa_for_IoT-Intro/sdkconfig.defaults -------------------------------------------------------------------------------- /Blinky-Hello-World/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/CMakeLists.txt -------------------------------------------------------------------------------- /Blinky-Hello-World/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/Makefile -------------------------------------------------------------------------------- /Blinky-Hello-World/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/CMakeLists.txt -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/Kconfig -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/atecc608/atecc608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/atecc608/atecc608.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/atecc608/atecc608.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/atecc608/atecc608.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/axp192/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/axp192/axp192.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/axp192/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/axp192/axp192.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/axp192/axp192_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/axp192/axp192_i2c.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/axp192/axp192_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/axp192/axp192_i2c.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/bm8563/bm8563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/bm8563/bm8563.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/bm8563/bm8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/bm8563/bm8563.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/button/button.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/button/button.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/core2forAWS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/core2forAWS.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/core2forAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/core2forAWS.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/ft6336u/ft6336u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/ft6336u/ft6336u.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/ft6336u/ft6336u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/ft6336u/ft6336u.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/mpu6886/mpu6886.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/mpu6886/mpu6886.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/mpu6886/mpu6886.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/mpu6886/mpu6886.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/sk6812/sk6812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/sk6812/sk6812.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/sk6812/sk6812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/sk6812/sk6812.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/speaker/speaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/speaker/speaker.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/speaker/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/speaker/speaker.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/disp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/disp_driver.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/disp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/disp_driver.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/disp_spi.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/disp_spi.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/ili9341.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/ili9341.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/core2forAWS/tft/lvgl/lv_conf.h -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/lvgl/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/lvgl/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/core2forAWS/tft/lvgl/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/CMakeLists.txt -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/Kconfig -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/LICENSE -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/component.mk -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/examples/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/examples/subscribe_publish/sdkconfig.ci: -------------------------------------------------------------------------------- 1 | # For CI build example assuming certificates stored on sdcard 2 | CONFIG_EXAMPLE_SDCARD_CERTS=y 3 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/examples/thing_shadow/sdkconfig.ci: -------------------------------------------------------------------------------- 1 | # For CI build example assuming certificates stored on sdcard 2 | CONFIG_EXAMPLE_SDCARD_CERTS=y 3 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-aws-iot/port/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-aws-iot/port/timer.c -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-cryptoauthlib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-cryptoauthlib/Kconfig -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-cryptoauthlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-cryptoauthlib/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-cryptoauthlib/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/components/esp-cryptoauthlib/component.mk -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-cryptoauthlib/cryptoauthlib/app/pkcs11/cryptoauthlib.conf.in: -------------------------------------------------------------------------------- 1 | # Cryptoauthlib Configuration File 2 | 3 | filestore = @DEFAULT_STORE_PATH@ 4 | -------------------------------------------------------------------------------- /Blinky-Hello-World/components/esp-cryptoauthlib/cryptoauthlib/version.txt: -------------------------------------------------------------------------------- 1 | cryptoauthlib-v3.3.1 2 | -------------------------------------------------------------------------------- /Blinky-Hello-World/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/CMakeLists.txt -------------------------------------------------------------------------------- /Blinky-Hello-World/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/Kconfig.projbuild -------------------------------------------------------------------------------- /Blinky-Hello-World/main/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/blink.c -------------------------------------------------------------------------------- /Blinky-Hello-World/main/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/certs/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/main/certs/aws-root-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/certs/aws-root-ca.pem -------------------------------------------------------------------------------- /Blinky-Hello-World/main/includes/blink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/includes/blink.h -------------------------------------------------------------------------------- /Blinky-Hello-World/main/includes/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/includes/ui.h -------------------------------------------------------------------------------- /Blinky-Hello-World/main/includes/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/includes/wifi.h -------------------------------------------------------------------------------- /Blinky-Hello-World/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/main.c -------------------------------------------------------------------------------- /Blinky-Hello-World/main/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/ui.c -------------------------------------------------------------------------------- /Blinky-Hello-World/main/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/main/wifi.c -------------------------------------------------------------------------------- /Blinky-Hello-World/partitions_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/partitions_16MB.csv -------------------------------------------------------------------------------- /Blinky-Hello-World/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/platformio.ini -------------------------------------------------------------------------------- /Blinky-Hello-World/register_thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/register_thing.py -------------------------------------------------------------------------------- /Blinky-Hello-World/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/sdkconfig.defaults -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/utilities/trustplatform/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/TrustnGO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/utilities/trustplatform/TrustnGO/README.md -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/TrustnGO/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/utilities/trustplatform/TrustnGO/logo.png -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/assets/python/certs_handler/__init__.py: -------------------------------------------------------------------------------- 1 | from .certs_handler import * 2 | -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/assets/python/requirements_helper/__init__.py: -------------------------------------------------------------------------------- 1 | from .requirements_helper import * 2 | -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/utilities/trustplatform/license.txt -------------------------------------------------------------------------------- /Blinky-Hello-World/utilities/trustplatform/start_here.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Blinky-Hello-World/utilities/trustplatform/start_here.html -------------------------------------------------------------------------------- /Factory-Firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/CMakeLists.txt -------------------------------------------------------------------------------- /Factory-Firmware/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/LICENSE.md -------------------------------------------------------------------------------- /Factory-Firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/Makefile -------------------------------------------------------------------------------- /Factory-Firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/README.md -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/CMakeLists.txt -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/Kconfig -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/atecc608/atecc608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/atecc608/atecc608.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/atecc608/atecc608.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/atecc608/atecc608.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/axp192/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/axp192/axp192.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/axp192/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/axp192/axp192.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/axp192/axp192_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/axp192/axp192_i2c.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/axp192/axp192_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/axp192/axp192_i2c.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/bm8563/bm8563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/bm8563/bm8563.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/bm8563/bm8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/bm8563/bm8563.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/button/button.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/button/button.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/core2forAWS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/core2forAWS.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/core2forAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/core2forAWS.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/ft6336u/ft6336u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/ft6336u/ft6336u.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/ft6336u/ft6336u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/ft6336u/ft6336u.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/i2c_bus/i2c_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/i2c_bus/i2c_device.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/i2c_bus/i2c_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/i2c_bus/i2c_device.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/mpu6886/mpu6886.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/mpu6886/mpu6886.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/mpu6886/mpu6886.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/mpu6886/mpu6886.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/sk6812/sk6812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/sk6812/sk6812.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/sk6812/sk6812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/sk6812/sk6812.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/speaker/speaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/speaker/speaker.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/speaker/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/speaker/speaker.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/disp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/disp_driver.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/disp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/disp_driver.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/disp_spi.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/disp_spi.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/ili9341.c -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/ili9341.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/lvgl/component.mk -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/lvgl/lv_conf.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/Kconfig -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/lvgl.h -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /Factory-Firmware/components/core2forAWS/tft/lvgl/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Factory-Firmware/components/esp-cryptoauthlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/esp-cryptoauthlib/CMakeLists.txt -------------------------------------------------------------------------------- /Factory-Firmware/components/esp-cryptoauthlib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/esp-cryptoauthlib/Kconfig -------------------------------------------------------------------------------- /Factory-Firmware/components/esp-cryptoauthlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/esp-cryptoauthlib/README.md -------------------------------------------------------------------------------- /Factory-Firmware/components/esp-cryptoauthlib/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/esp-cryptoauthlib/component.mk -------------------------------------------------------------------------------- /Factory-Firmware/components/esp-cryptoauthlib/cryptoauthlib/app/pkcs11/cryptoauthlib.conf.in: -------------------------------------------------------------------------------- 1 | # Cryptoauthlib Configuration File 2 | 3 | filestore = @DEFAULT_STORE_PATH@ 4 | -------------------------------------------------------------------------------- /Factory-Firmware/components/esp-cryptoauthlib/cryptoauthlib/version.txt: -------------------------------------------------------------------------------- 1 | cryptoauthlib-v3.3.1 2 | -------------------------------------------------------------------------------- /Factory-Firmware/components/fft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/fft/CMakeLists.txt -------------------------------------------------------------------------------- /Factory-Firmware/components/fft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/fft/README.md -------------------------------------------------------------------------------- /Factory-Firmware/components/fft/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/fft/component.mk -------------------------------------------------------------------------------- /Factory-Firmware/components/fft/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/fft/fft.c -------------------------------------------------------------------------------- /Factory-Firmware/components/fft/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/components/fft/fft.h -------------------------------------------------------------------------------- /Factory-Firmware/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/CMakeLists.txt -------------------------------------------------------------------------------- /Factory-Firmware/main/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/clock.c -------------------------------------------------------------------------------- /Factory-Firmware/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/component.mk -------------------------------------------------------------------------------- /Factory-Firmware/main/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/crypto.c -------------------------------------------------------------------------------- /Factory-Firmware/main/cta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/cta.c -------------------------------------------------------------------------------- /Factory-Firmware/main/home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/home.c -------------------------------------------------------------------------------- /Factory-Firmware/main/images/color_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/images/color_map.c -------------------------------------------------------------------------------- /Factory-Firmware/main/images/core2forAWS_qr_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/images/core2forAWS_qr_code.c -------------------------------------------------------------------------------- /Factory-Firmware/main/images/gauge_hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/images/gauge_hand.c -------------------------------------------------------------------------------- /Factory-Firmware/main/images/powered_by_aws_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/images/powered_by_aws_logo.c -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/clock.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/crypto.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/cta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/cta.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/home.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/home.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/led_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/led_bar.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/mic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/mic.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/mpu.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/power.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/sound.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/touch.h -------------------------------------------------------------------------------- /Factory-Firmware/main/includes/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/includes/wifi.h -------------------------------------------------------------------------------- /Factory-Firmware/main/led_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/led_bar.c -------------------------------------------------------------------------------- /Factory-Firmware/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/main.c -------------------------------------------------------------------------------- /Factory-Firmware/main/mic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/mic.c -------------------------------------------------------------------------------- /Factory-Firmware/main/mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/mpu.c -------------------------------------------------------------------------------- /Factory-Firmware/main/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/power.c -------------------------------------------------------------------------------- /Factory-Firmware/main/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/sound.c -------------------------------------------------------------------------------- /Factory-Firmware/main/sounds/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/sounds/music.c -------------------------------------------------------------------------------- /Factory-Firmware/main/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/touch.c -------------------------------------------------------------------------------- /Factory-Firmware/main/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/main/wifi.c -------------------------------------------------------------------------------- /Factory-Firmware/partitions_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/partitions_16MB.csv -------------------------------------------------------------------------------- /Factory-Firmware/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/platformio.ini -------------------------------------------------------------------------------- /Factory-Firmware/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Factory-Firmware/sdkconfig.defaults -------------------------------------------------------------------------------- /Getting-Started/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/LICENSE -------------------------------------------------------------------------------- /Getting-Started/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/Makefile -------------------------------------------------------------------------------- /Getting-Started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/README.md -------------------------------------------------------------------------------- /Getting-Started/cli/html/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/html/welcome.html -------------------------------------------------------------------------------- /Getting-Started/cli/rainmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rainmaker.py -------------------------------------------------------------------------------- /Getting-Started/cli/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/requirements.txt -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_cmd/__init__.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_cmd/browserlogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_cmd/browserlogin.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_cmd/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_cmd/node.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_cmd/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_cmd/provision.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_cmd/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_cmd/test.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_cmd/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_cmd/user.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/__init__.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/configmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/configmanager.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/device.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/exceptions.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/logger.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/node.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/serverconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/serverconfig.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/service.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/session.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_lib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_lib/user.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/__init__.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/rmaker_claim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/rmaker_claim/__init__.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/rmaker_claim/claim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/rmaker_claim/claim.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/rmaker_claim/claim_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/rmaker_claim/claim_config.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/rmaker_prov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/rmaker_prov/README.md -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/rmaker_prov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/rmaker_prov/__init__.py -------------------------------------------------------------------------------- /Getting-Started/cli/rmaker_tools/rmaker_prov/prov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/rmaker_tools/rmaker_prov/prov/__init__.py -------------------------------------------------------------------------------- /Getting-Started/cli/server_cert/server_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/cli/server_cert/server_cert.pem -------------------------------------------------------------------------------- /Getting-Started/components/app_reset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_reset/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/app_reset/app_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_reset/app_reset.c -------------------------------------------------------------------------------- /Getting-Started/components/app_reset/app_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_reset/app_reset.h -------------------------------------------------------------------------------- /Getting-Started/components/app_reset/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_reset/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/app_wifi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_wifi/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/app_wifi/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_wifi/Kconfig.projbuild -------------------------------------------------------------------------------- /Getting-Started/components/app_wifi/app_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_wifi/app_wifi.c -------------------------------------------------------------------------------- /Getting-Started/components/app_wifi/app_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_wifi/app_wifi.h -------------------------------------------------------------------------------- /Getting-Started/components/app_wifi/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/app_wifi/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/button/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/button/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/button/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/button/Kconfig -------------------------------------------------------------------------------- /Getting-Started/components/button/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/button/button/button.c -------------------------------------------------------------------------------- /Getting-Started/components/button/button/button_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/button/button/button_obj.cpp -------------------------------------------------------------------------------- /Getting-Started/components/button/button/include/iot_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/button/button/include/iot_button.h -------------------------------------------------------------------------------- /Getting-Started/components/button/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/button/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/Kconfig -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/atecc608/atecc608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/atecc608/atecc608.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/atecc608/atecc608.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/atecc608/atecc608.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/axp192/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/axp192/axp192.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/axp192/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/axp192/axp192.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/axp192/axp192_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/axp192/axp192_i2c.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/axp192/axp192_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/axp192/axp192_i2c.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/bm8563/bm8563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/bm8563/bm8563.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/bm8563/bm8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/bm8563/bm8563.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/button/button.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/button/button.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/core2forAWS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/core2forAWS.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/core2forAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/core2forAWS.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/ft6336u/ft6336u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/ft6336u/ft6336u.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/ft6336u/ft6336u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/ft6336u/ft6336u.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/i2c_bus/i2c_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/i2c_bus/i2c_device.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/i2c_bus/i2c_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/i2c_bus/i2c_device.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/mpu6886/mpu6886.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/mpu6886/mpu6886.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/mpu6886/mpu6886.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/mpu6886/mpu6886.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/sk6812/sk6812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/sk6812/sk6812.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/sk6812/sk6812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/sk6812/sk6812.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/speaker/speaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/speaker/speaker.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/speaker/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/speaker/speaker.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/disp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/disp_driver.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/disp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/disp_driver.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/disp_spi.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/disp_spi.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/ili9341.c -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/ili9341.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/lvgl/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/lvgl/lv_conf.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/lvgl/lvgl/Kconfig -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/lvgl/lvgl/lvgl.h -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /Getting-Started/components/core2forAWS/tft/lvgl/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Getting-Started/components/esp-cryptoauthlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-cryptoauthlib/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/esp-cryptoauthlib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-cryptoauthlib/Kconfig -------------------------------------------------------------------------------- /Getting-Started/components/esp-cryptoauthlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-cryptoauthlib/README.md -------------------------------------------------------------------------------- /Getting-Started/components/esp-cryptoauthlib/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-cryptoauthlib/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/esp-cryptoauthlib/cryptoauthlib/app/pkcs11/cryptoauthlib.conf.in: -------------------------------------------------------------------------------- 1 | # Cryptoauthlib Configuration File 2 | 3 | filestore = @DEFAULT_STORE_PATH@ 4 | -------------------------------------------------------------------------------- /Getting-Started/components/esp-cryptoauthlib/cryptoauthlib/version.txt: -------------------------------------------------------------------------------- 1 | cryptoauthlib-v3.3.1 2 | -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/.gitignore -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/.gitlab-ci.yml -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/.gitmodules -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/README.md -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/cli/.gitignore -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/cli/html/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/cli/html/welcome.html -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/cli/rainmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/cli/rainmaker.py -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/cli/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/cli/requirements.txt -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/docs/_static/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/docs/_static/logs.png -------------------------------------------------------------------------------- /Getting-Started/components/esp-insights/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp-insights/examples/README.md -------------------------------------------------------------------------------- /Getting-Started/components/esp_rainmaker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_rainmaker/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/esp_rainmaker/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_rainmaker/Kconfig.projbuild -------------------------------------------------------------------------------- /Getting-Started/components/esp_rainmaker/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_rainmaker/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/esp_schedule/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_schedule/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/esp_schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_schedule/README.md -------------------------------------------------------------------------------- /Getting-Started/components/esp_schedule/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_schedule/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/esp_schedule/src/esp_schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/esp_schedule/src/esp_schedule.c -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/idf_component.yml -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/upstream/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/upstream/.gitignore -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/upstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/upstream/LICENSE -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/upstream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/upstream/Makefile -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/upstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/upstream/README.md -------------------------------------------------------------------------------- /Getting-Started/components/json_generator/upstream/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_generator/upstream/test.c -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/idf_component.yml -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/.gitmodules -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/LICENSE -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/Makefile -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/README.md -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/jsmn/.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | sudo: false 3 | script: 4 | - make test 5 | -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/jsmn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/jsmn/LICENSE -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/jsmn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/jsmn/Makefile -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/jsmn/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/jsmn/jsmn.h -------------------------------------------------------------------------------- /Getting-Started/components/json_parser/upstream/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/json_parser/upstream/tests/main.c -------------------------------------------------------------------------------- /Getting-Started/components/qrcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/qrcode/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/qrcode/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/qrcode/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/qrcode/include/qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/qrcode/include/qrcode.h -------------------------------------------------------------------------------- /Getting-Started/components/qrcode/src/qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/qrcode/src/qrcode.c -------------------------------------------------------------------------------- /Getting-Started/components/qrcode/src/qrcodegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/qrcode/src/qrcodegen.c -------------------------------------------------------------------------------- /Getting-Started/components/qrcode/src/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/qrcode/src/qrcodegen.h -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/Kconfig -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/README.md -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/src/factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/src/factory.c -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/src/time.c -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/src/timezone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/src/timezone.c -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/src/utils.c -------------------------------------------------------------------------------- /Getting-Started/components/rmaker_common/src/work_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/rmaker_common/src/work_queue.c -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/Kconfig -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/component.mk -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/led_strip.h -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/led_strip_rmt_ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/led_strip_rmt_ws2812.c -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/ws2812_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/ws2812_led.c -------------------------------------------------------------------------------- /Getting-Started/components/ws2812_led/ws2812_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/components/ws2812_led/ws2812_led.h -------------------------------------------------------------------------------- /Getting-Started/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/Doxyfile -------------------------------------------------------------------------------- /Getting-Started/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/Makefile -------------------------------------------------------------------------------- /Getting-Started/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/README.md -------------------------------------------------------------------------------- /Getting-Started/docs/_static/esp-rainmaker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/_static/esp-rainmaker-logo.png -------------------------------------------------------------------------------- /Getting-Started/docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /Getting-Started/docs/c-api-reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/c-api-reference/index.rst -------------------------------------------------------------------------------- /Getting-Started/docs/c-api-reference/rainmaker_common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/c-api-reference/rainmaker_common.rst -------------------------------------------------------------------------------- /Getting-Started/docs/c-api-reference/rainmaker_console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/c-api-reference/rainmaker_console.rst -------------------------------------------------------------------------------- /Getting-Started/docs/c-api-reference/rainmaker_core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/c-api-reference/rainmaker_core.rst -------------------------------------------------------------------------------- /Getting-Started/docs/c-api-reference/rainmaker_mqtt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/c-api-reference/rainmaker_mqtt.rst -------------------------------------------------------------------------------- /Getting-Started/docs/c-api-reference/rainmaker_ota.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/c-api-reference/rainmaker_ota.rst -------------------------------------------------------------------------------- /Getting-Started/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/conf.py -------------------------------------------------------------------------------- /Getting-Started/docs/gen-dxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/gen-dxd.py -------------------------------------------------------------------------------- /Getting-Started/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/index.rst -------------------------------------------------------------------------------- /Getting-Started/docs/link-roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/link-roles.py -------------------------------------------------------------------------------- /Getting-Started/docs/local_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/local_util.py -------------------------------------------------------------------------------- /Getting-Started/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/make.bat -------------------------------------------------------------------------------- /Getting-Started/docs/python-api-reference/cmd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/python-api-reference/cmd.rst -------------------------------------------------------------------------------- /Getting-Started/docs/python-api-reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/python-api-reference/index.rst -------------------------------------------------------------------------------- /Getting-Started/docs/python-api-reference/lib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/python-api-reference/lib.rst -------------------------------------------------------------------------------- /Getting-Started/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/docs/requirements.txt -------------------------------------------------------------------------------- /Getting-Started/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/CMakeLists.txt -------------------------------------------------------------------------------- /Getting-Started/main/app_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/app_driver.c -------------------------------------------------------------------------------- /Getting-Started/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/app_main.c -------------------------------------------------------------------------------- /Getting-Started/main/app_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/app_priv.h -------------------------------------------------------------------------------- /Getting-Started/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/component.mk -------------------------------------------------------------------------------- /Getting-Started/main/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/display.c -------------------------------------------------------------------------------- /Getting-Started/main/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/display.h -------------------------------------------------------------------------------- /Getting-Started/main/fan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/fan.c -------------------------------------------------------------------------------- /Getting-Started/main/fan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/fan.h -------------------------------------------------------------------------------- /Getting-Started/main/fan_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/fan_off.c -------------------------------------------------------------------------------- /Getting-Started/main/fan_spinning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/fan_spinning.c -------------------------------------------------------------------------------- /Getting-Started/main/house_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/house_off.c -------------------------------------------------------------------------------- /Getting-Started/main/house_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/house_on.c -------------------------------------------------------------------------------- /Getting-Started/main/hsv2rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/hsv2rgb.c -------------------------------------------------------------------------------- /Getting-Started/main/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/hsv2rgb.h -------------------------------------------------------------------------------- /Getting-Started/main/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/light.c -------------------------------------------------------------------------------- /Getting-Started/main/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/light.h -------------------------------------------------------------------------------- /Getting-Started/main/temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/temperature.c -------------------------------------------------------------------------------- /Getting-Started/main/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/temperature.h -------------------------------------------------------------------------------- /Getting-Started/main/thermometer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/thermometer.c -------------------------------------------------------------------------------- /Getting-Started/main/user_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/main/user_parameters.h -------------------------------------------------------------------------------- /Getting-Started/partitions_4MB_sec.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/partitions_4MB_sec.csv -------------------------------------------------------------------------------- /Getting-Started/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/platformio.ini -------------------------------------------------------------------------------- /Getting-Started/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Getting-Started/sdkconfig.defaults -------------------------------------------------------------------------------- /Hardware-Features-Demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/CMakeLists.txt -------------------------------------------------------------------------------- /Hardware-Features-Demo/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/LICENSE.md -------------------------------------------------------------------------------- /Hardware-Features-Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/Makefile -------------------------------------------------------------------------------- /Hardware-Features-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/README.md -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/CMakeLists.txt -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/Kconfig -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/axp192/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/axp192/axp192.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/axp192/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/axp192/axp192.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/bm8563/bm8563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/bm8563/bm8563.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/bm8563/bm8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/bm8563/bm8563.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/button/button.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/button/button.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/core2forAWS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/core2forAWS.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/core2forAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/core2forAWS.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/sk6812/sk6812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/sk6812/sk6812.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/sk6812/sk6812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/sk6812/sk6812.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/tft/disp_spi.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/tft/disp_spi.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/tft/ili9341.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/core2forAWS/tft/ili9341.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/lvgl/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/lvgl/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/core2forAWS/tft/lvgl/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/esp-cryptoauthlib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/esp-cryptoauthlib/Kconfig -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/esp-cryptoauthlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/components/esp-cryptoauthlib/README.md -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/esp-cryptoauthlib/cryptoauthlib/app/pkcs11/cryptoauthlib.conf.in: -------------------------------------------------------------------------------- 1 | # Cryptoauthlib Configuration File 2 | 3 | filestore = @DEFAULT_STORE_PATH@ 4 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/components/esp-cryptoauthlib/cryptoauthlib/version.txt: -------------------------------------------------------------------------------- 1 | cryptoauthlib-v3.3.1 2 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/atecc608_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/atecc608_test.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/component.mk -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/fft.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/includes/atecc608_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void atecc_test(); 4 | -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/includes/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/includes/fft.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/includes/mic_fft_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/includes/mic_fft_test.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/includes/sk6812_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/includes/sk6812_test.h -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/main.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/mic_fft_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/mic_fft_test.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/music.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/main/sk6812_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/main/sk6812_test.c -------------------------------------------------------------------------------- /Hardware-Features-Demo/partitions_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/partitions_16MB.csv -------------------------------------------------------------------------------- /Hardware-Features-Demo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/platformio.ini -------------------------------------------------------------------------------- /Hardware-Features-Demo/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Hardware-Features-Demo/sdkconfig.defaults -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/README.md -------------------------------------------------------------------------------- /Smart-Spaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Spaces/README.md -------------------------------------------------------------------------------- /Smart-Thermostat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/CMakeLists.txt -------------------------------------------------------------------------------- /Smart-Thermostat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/LICENSE -------------------------------------------------------------------------------- /Smart-Thermostat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/Makefile -------------------------------------------------------------------------------- /Smart-Thermostat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/README.md -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/CMakeLists.txt -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/Kconfig -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/atecc608/atecc608.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/atecc608/atecc608.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/atecc608/atecc608.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/atecc608/atecc608.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/axp192/axp192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/axp192/axp192.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/axp192/axp192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/axp192/axp192.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/axp192/axp192_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/axp192/axp192_i2c.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/axp192/axp192_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/axp192/axp192_i2c.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/bm8563/bm8563.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/bm8563/bm8563.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/bm8563/bm8563.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/bm8563/bm8563.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/button/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/button/button.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/button/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/button/button.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS := . 2 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/core2forAWS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/core2forAWS.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/core2forAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/core2forAWS.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/ft6336u/ft6336u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/ft6336u/ft6336u.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/ft6336u/ft6336u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/ft6336u/ft6336u.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/i2c_bus/i2c_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/i2c_bus/i2c_device.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/i2c_bus/i2c_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/i2c_bus/i2c_device.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/mpu6886/mpu6886.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/mpu6886/mpu6886.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/mpu6886/mpu6886.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/mpu6886/mpu6886.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/sk6812/sk6812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/sk6812/sk6812.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/sk6812/sk6812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/sk6812/sk6812.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/speaker/speaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/speaker/speaker.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/speaker/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/speaker/speaker.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/disp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/disp_driver.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/disp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/disp_driver.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/disp_spi.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/disp_spi.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/ili9341.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/ili9341.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/lvgl/component.mk -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/lvgl/lv_conf.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/Kconfig -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/lvgl.h -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/lvgl.mk -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/core2forAWS/tft/lvgl/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/CMakeLists.txt -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/Kconfig -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/LICENSE -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/README.md -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/component.mk -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/examples/README.md -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/examples/subscribe_publish/sdkconfig.ci: -------------------------------------------------------------------------------- 1 | # For CI build example assuming certificates stored on sdcard 2 | CONFIG_EXAMPLE_SDCARD_CERTS=y 3 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/examples/thing_shadow/sdkconfig.ci: -------------------------------------------------------------------------------- 1 | # For CI build example assuming certificates stored on sdcard 2 | CONFIG_EXAMPLE_SDCARD_CERTS=y 3 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-aws-iot/port/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-aws-iot/port/timer.c -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-cryptoauthlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-cryptoauthlib/CMakeLists.txt -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-cryptoauthlib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-cryptoauthlib/Kconfig -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-cryptoauthlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-cryptoauthlib/README.md -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-cryptoauthlib/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/components/esp-cryptoauthlib/component.mk -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-cryptoauthlib/cryptoauthlib/app/pkcs11/cryptoauthlib.conf.in: -------------------------------------------------------------------------------- 1 | # Cryptoauthlib Configuration File 2 | 3 | filestore = @DEFAULT_STORE_PATH@ 4 | -------------------------------------------------------------------------------- /Smart-Thermostat/components/esp-cryptoauthlib/cryptoauthlib/version.txt: -------------------------------------------------------------------------------- 1 | cryptoauthlib-v3.3.1 2 | -------------------------------------------------------------------------------- /Smart-Thermostat/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/input.json -------------------------------------------------------------------------------- /Smart-Thermostat/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/CMakeLists.txt -------------------------------------------------------------------------------- /Smart-Thermostat/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/Kconfig.projbuild -------------------------------------------------------------------------------- /Smart-Thermostat/main/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/certs/README.md -------------------------------------------------------------------------------- /Smart-Thermostat/main/certs/aws-root-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/certs/aws-root-ca.pem -------------------------------------------------------------------------------- /Smart-Thermostat/main/certs/certificate.pem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/certs/certificate.pem.crt -------------------------------------------------------------------------------- /Smart-Thermostat/main/certs/private.pem.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/certs/private.pem.key -------------------------------------------------------------------------------- /Smart-Thermostat/main/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/fft.c -------------------------------------------------------------------------------- /Smart-Thermostat/main/includes/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/includes/fft.h -------------------------------------------------------------------------------- /Smart-Thermostat/main/includes/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/includes/ui.h -------------------------------------------------------------------------------- /Smart-Thermostat/main/includes/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/includes/wifi.h -------------------------------------------------------------------------------- /Smart-Thermostat/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/main.c -------------------------------------------------------------------------------- /Smart-Thermostat/main/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/ui.c -------------------------------------------------------------------------------- /Smart-Thermostat/main/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/main/wifi.c -------------------------------------------------------------------------------- /Smart-Thermostat/partitions_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/partitions_16MB.csv -------------------------------------------------------------------------------- /Smart-Thermostat/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/platformio.ini -------------------------------------------------------------------------------- /Smart-Thermostat/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/Core2-for-AWS-IoT-Kit/HEAD/Smart-Thermostat/sdkconfig.defaults --------------------------------------------------------------------------------