├── Music ├── 404-41-4.mp3 ├── 404-41-5.mp3 ├── Canon.mp3 ├── For Elise.mp3 ├── Lady GaGa-Poker Face.mp3 ├── SongTaste.mp3 ├── To_meet_the_prime_time_44k.mp3 ├── Waka Waka.mp3 ├── Wonder Girls-Nobody.mp3 ├── dukou.mp3 ├── mirboy-it's ok.mp3 └── myheart_44k.mp3 ├── README.md ├── components ├── bus │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bsp_i2c.c │ ├── bsp_i2s.c │ ├── bsp_sdcard.c │ ├── component.mk │ ├── i2c_bus.c │ ├── include │ │ ├── bsp_i2c.h │ │ ├── bsp_i2s.h │ │ ├── bsp_sdcard.h │ │ ├── i2c_bus.h │ │ └── spi_bus.h │ ├── spi_bus.c │ └── test │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── test_i2c_bus.c │ │ └── test_spi_bus.c ├── codec │ ├── CMakeLists.txt │ ├── es8311.c │ └── include │ │ ├── audio_hal.h │ │ ├── es8311.h │ │ └── esxxx_common.h ├── esp-code-scanner │ ├── CMakeLists.txt │ ├── include │ │ └── esp_code_scanner.h │ └── lib │ │ ├── esp32 │ │ └── libesp-code-scanner.a │ │ ├── esp32s2 │ │ └── libesp-code-scanner.a │ │ ├── esp32s3 │ │ └── libesp-code-scanner.a │ │ └── libnewlib_iconv.a ├── esp32-camera │ ├── CMakeLists.txt │ ├── Kconfig │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── conversions │ │ ├── esp_jpg_decode.c │ │ ├── include │ │ │ ├── esp_jpg_decode.h │ │ │ └── img_converters.h │ │ ├── jpge.cpp │ │ ├── private_include │ │ │ ├── jpge.h │ │ │ └── yuv.h │ │ ├── to_bmp.c │ │ ├── to_jpg.cpp │ │ └── yuv.c │ ├── driver │ │ ├── cam_hal.c │ │ ├── esp_camera.c │ │ ├── include │ │ │ ├── esp_camera.h │ │ │ └── sensor.h │ │ ├── private_include │ │ │ ├── cam_hal.h │ │ │ ├── sccb.h │ │ │ └── xclk.h │ │ ├── sccb.c │ │ └── sensor.c │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── component.mk │ │ │ └── take_picture.c │ │ └── sdkconfig.defaults │ ├── idf_component.yml │ ├── library.json │ ├── sensors │ │ ├── bf3005.c │ │ ├── gc0308.c │ │ ├── gc032a.c │ │ ├── gc2145.c │ │ ├── nt99141.c │ │ ├── ov2640.c │ │ ├── ov3660.c │ │ ├── ov5640.c │ │ ├── ov7670.c │ │ ├── ov7725.c │ │ └── private_include │ │ │ ├── bf3005.h │ │ │ ├── bf3005_regs.h │ │ │ ├── gc0308.h │ │ │ ├── gc0308_regs.h │ │ │ ├── gc0308_settings.h │ │ │ ├── gc032a.h │ │ │ ├── gc032a_regs.h │ │ │ ├── gc032a_settings.h │ │ │ ├── gc2145.h │ │ │ ├── gc2145_regs.h │ │ │ ├── gc2145_settings.h │ │ │ ├── nt99141.h │ │ │ ├── nt99141_regs.h │ │ │ ├── nt99141_settings.h │ │ │ ├── ov2640.h │ │ │ ├── ov2640_regs.h │ │ │ ├── ov2640_settings.h │ │ │ ├── ov3660.h │ │ │ ├── ov3660_regs.h │ │ │ ├── ov3660_settings.h │ │ │ ├── ov5640.h │ │ │ ├── ov5640_regs.h │ │ │ ├── ov5640_settings.h │ │ │ ├── ov7670.h │ │ │ ├── ov7670_regs.h │ │ │ ├── ov7725.h │ │ │ └── ov7725_regs.h │ ├── target │ │ ├── esp32 │ │ │ └── ll_cam.c │ │ ├── esp32s2 │ │ │ ├── ll_cam.c │ │ │ ├── private_include │ │ │ │ └── tjpgd.h │ │ │ └── tjpgd.c │ │ ├── esp32s3 │ │ │ └── ll_cam.c │ │ ├── private_include │ │ │ └── ll_cam.h │ │ └── xclk.c │ └── test │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── pictures │ │ ├── test_inside.jpeg │ │ ├── test_outside.jpeg │ │ └── testimg.jpeg │ │ └── test_camera.c ├── fb_gfx │ ├── CMakeLists.txt │ ├── FreeMonoBold12pt7b.h │ ├── component.mk │ ├── fb_gfx.c │ └── include │ │ └── fb_gfx.h ├── libhelix-mp3 │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── RCSL.txt │ ├── RPSL.txt │ ├── Umakefil │ ├── docs │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── RPSL.txt │ │ ├── cpuusage.xls │ │ └── memory.xls │ ├── mp3dec.c │ ├── mp3tabs.c │ ├── pub │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── RPSL.txt │ │ ├── mp3common.h │ │ ├── mp3dec.h │ │ ├── mpadecobjfixpt.h │ │ └── statname.h │ ├── readme.txt │ ├── real │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── RPSL.txt │ │ ├── arm │ │ │ ├── LICENSE.txt │ │ │ ├── RCSL.txt │ │ │ ├── RPSL.txt │ │ │ ├── asmmisc.s │ │ │ ├── asmpoly.s │ │ │ └── asmpoly_gcc.S │ │ ├── assembly.h │ │ ├── bitstream.c │ │ ├── buffers.c │ │ ├── coder.h │ │ ├── dct32.c │ │ ├── dequant.c │ │ ├── dqchan.c │ │ ├── huffman.c │ │ ├── hufftabs.c │ │ ├── imdct.c │ │ ├── polyphase.c │ │ ├── projects │ │ │ ├── armads │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── mp3dec.mcp │ │ │ │ └── testwrap.mcp │ │ │ ├── armwince │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── mp3dec.vcp │ │ │ │ ├── mp3dec.vcw │ │ │ │ └── testwrap.vcp │ │ │ └── visualc │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── RCSL.txt │ │ │ │ ├── RPSL.txt │ │ │ │ ├── mp3dec.dsp │ │ │ │ ├── mp3dec.dsw │ │ │ │ └── testwrap.dsp │ │ ├── scalfact.c │ │ ├── stproc.c │ │ ├── subband.c │ │ └── trigtabs.c │ └── testwrap │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── RPSL.txt │ │ ├── Umakefil │ │ ├── debug.c │ │ ├── debug.h │ │ ├── main.c │ │ ├── timing.c │ │ ├── timing.h │ │ └── winmain.cpp ├── modules │ ├── CMakeLists.txt │ ├── Kconfig │ ├── ai │ │ ├── who_ai_utils.cpp │ │ ├── who_ai_utils.hpp │ │ ├── who_cat_face_detection.cpp │ │ ├── who_cat_face_detection.hpp │ │ ├── who_color_detection.cpp │ │ ├── who_color_detection.hpp │ │ ├── who_human_face_detection.cpp │ │ ├── who_human_face_detection.hpp │ │ ├── who_human_face_recognition.cpp │ │ ├── who_human_face_recognition.hpp │ │ ├── who_motion_detection.cpp │ │ └── who_motion_detection.hpp │ ├── button │ │ ├── who_adc_button.c │ │ ├── who_adc_button.h │ │ ├── who_button.c │ │ └── who_button.h │ ├── camera │ │ ├── who_camera.c │ │ └── who_camera.h │ ├── hdc1080 │ │ ├── hdc1080.c │ │ └── hdc1080.h │ ├── imu │ │ ├── qma7981.c │ │ └── qma7981.h │ ├── lcd │ │ ├── logo_en_240x240_lcd.h │ │ ├── who_lcd.c │ │ └── who_lcd.h │ ├── led │ │ ├── who_led.c │ │ └── who_led.h │ ├── tp │ │ ├── ns2009.c │ │ └── ns2009.h │ ├── trace │ │ ├── who_trace.c │ │ └── who_trace.h │ ├── web │ │ ├── app_httpd.cpp │ │ ├── app_httpd.hpp │ │ ├── app_mdns.c │ │ ├── app_mdns.h │ │ ├── app_wifi.c │ │ ├── app_wifi.h │ │ └── www │ │ │ ├── compress_pages.sh │ │ │ ├── index_ov2640.html │ │ │ ├── index_ov2640.html.gz │ │ │ ├── index_ov3660.html │ │ │ ├── index_ov3660.html.gz │ │ │ ├── index_ov5640.html │ │ │ ├── index_ov5640.html.gz │ │ │ ├── monitor.html │ │ │ └── monitor.html.gz │ └── ws2812 │ │ ├── led_strip.h │ │ ├── led_strip_rmt_ws2812.c │ │ ├── ws2812.c │ │ └── ws2812.h ├── screen │ ├── CMakeLists.txt │ ├── Kconfig │ ├── component.mk │ ├── controller_driver │ │ ├── ili9341 │ │ │ ├── ili9341.c │ │ │ └── ili9341.h │ │ ├── ili9486 │ │ │ ├── ili9486.c │ │ │ └── ili9486.h │ │ ├── ili9488 │ │ │ ├── ili9488.c │ │ │ └── ili9488.h │ │ ├── ili9806 │ │ │ ├── ili9806.c │ │ │ └── ili9806.h │ │ ├── nt35510 │ │ │ ├── nt35510.c │ │ │ └── nt35510.h │ │ ├── rm68120 │ │ │ ├── rm68120.c │ │ │ └── rm68120.h │ │ ├── ssd1306 │ │ │ ├── ssd1306.c │ │ │ └── ssd1306.h │ │ ├── ssd1307 │ │ │ ├── ssd1307.c │ │ │ └── ssd1307.h │ │ ├── ssd1322 │ │ │ ├── ssd1322.c │ │ │ └── ssd1322.h │ │ ├── ssd1351 │ │ │ ├── ssd1351.c │ │ │ └── ssd1351.h │ │ ├── ssd1963 │ │ │ ├── ssd1963.c │ │ │ └── ssd1963.h │ │ ├── st7789 │ │ │ ├── st7789.c │ │ │ └── st7789.h │ │ └── st7796 │ │ │ ├── st7796.c │ │ │ └── st7796.h │ ├── interface_driver │ │ ├── scr_interface_driver.c │ │ └── scr_interface_driver.h │ ├── screen_driver.c │ ├── screen_driver.h │ ├── screen_utility │ │ ├── interface_drv_def.h │ │ ├── screen_utility.c │ │ └── screen_utility.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── component.mk │ │ ├── lcd_color_test.c │ │ └── lcd_mono_test.c └── sr_ringbuf │ ├── CMakeLists.txt │ ├── EspAudioAlloc.c │ ├── EspAudioAlloc.h │ ├── lock.c │ ├── lock.h │ ├── ringbuf.c │ └── ringbuf.h ├── docs └── Assemble-esp32-s3-eye.pdf ├── examples ├── audio_record_play │ ├── CMakeLists.txt │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.cpp │ │ ├── include │ │ │ └── ui_record.h │ │ └── ui_record.c │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old ├── cat_face_detection │ ├── lcd │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── app_main.cpp │ │ ├── sdkconfig │ │ └── sdkconfig.old │ └── terminal │ │ ├── CMakeLists.txt │ │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.cpp │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── code_recognition │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.c │ │ ├── app_peripherals.c │ │ └── include │ │ │ └── app_peripherals.h │ ├── sdkconfig │ └── sdkconfig.old ├── color_detection │ ├── README.md │ ├── README_CN.md │ └── lcd │ │ ├── CMakeLists.txt │ │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.cpp │ │ ├── event_logic.cpp │ │ └── event_logic.hpp │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── esp-skainet │ ├── chinese_tts │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ ├── include │ │ │ │ └── tts_urat.h │ │ │ └── tts_urat.c │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old │ ├── cn_speech_commands_recognition │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ ├── include │ │ │ │ ├── ie_kaiji.h │ │ │ │ ├── m_0.h │ │ │ │ ├── m_1.h │ │ │ │ ├── m_10.h │ │ │ │ ├── m_11.h │ │ │ │ ├── m_12.h │ │ │ │ ├── m_13.h │ │ │ │ ├── m_14.h │ │ │ │ ├── m_15.h │ │ │ │ ├── m_16.h │ │ │ │ ├── m_17.h │ │ │ │ ├── m_2.h │ │ │ │ ├── m_3.h │ │ │ │ ├── m_4.h │ │ │ │ ├── m_5.h │ │ │ │ ├── m_6.h │ │ │ │ ├── m_7.h │ │ │ │ ├── m_8.h │ │ │ │ ├── m_9.h │ │ │ │ ├── speech_commands_action.h │ │ │ │ └── wake_up_prompt_tone.h │ │ │ └── speech_commands_action.c │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old │ ├── en_speech_commands_recognition │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.c │ │ │ ├── include │ │ │ │ ├── me_16_degress.h │ │ │ │ ├── me_17_degrees.h │ │ │ │ ├── me_18_degrees.h │ │ │ │ ├── me_19_degrees.h │ │ │ │ ├── me_20_degrees.h │ │ │ │ ├── me_21_degrees.h │ │ │ │ ├── me_22_degrees.h │ │ │ │ ├── me_23_degrees.h │ │ │ │ ├── me_24_degrees.h │ │ │ │ ├── me_25_degrees.h │ │ │ │ ├── me_26_degrees.h │ │ │ │ ├── me_decrease_the_volume.h │ │ │ │ ├── me_green_color.h │ │ │ │ ├── me_highest_volume.h │ │ │ │ ├── me_increase_volume.h │ │ │ │ ├── me_lowest_volume.h │ │ │ │ ├── me_make_me_a_coffee.h │ │ │ │ ├── me_make_me_a_tea.h │ │ │ │ ├── me_play_news_channel.h │ │ │ │ ├── me_red_color.h │ │ │ │ ├── me_sing_a_song.h │ │ │ │ ├── me_tell_me_a_joke.h │ │ │ │ ├── me_turn_off_all_the_light.h │ │ │ │ ├── me_turn_off_my_soundbox.h │ │ │ │ ├── me_turn_off_the_TV.h │ │ │ │ ├── me_turn_off_the_air_conditioner.h │ │ │ │ ├── me_turn_off_the_light.h │ │ │ │ ├── me_turn_on_all_the_light.h │ │ │ │ ├── me_turn_on_my_soundbox.h │ │ │ │ ├── me_turn_on_the_TV.h │ │ │ │ ├── me_turn_on_the_air_conditioner.h │ │ │ │ ├── me_turn_on_the_light.h │ │ │ │ ├── speech_commands_action.h │ │ │ │ └── wake_up_prompt_tone.h │ │ │ └── speech_commands_action.c │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old │ └── wake_word_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── README_cn.md │ │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.c │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── human_face_detection │ ├── lcd │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── app_main.cpp │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old │ └── terminal │ │ ├── CMakeLists.txt │ │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.cpp │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── human_face_recognition │ ├── README.md │ ├── README_CN.md │ ├── lcd │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ ├── app_main.cpp │ │ │ ├── event_logic.cpp │ │ │ └── event_logic.hpp │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old │ └── terminal │ │ ├── CMakeLists.txt │ │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.cpp │ │ ├── event_logic.cpp │ │ └── event_logic.hpp │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── lvgl_demo │ ├── CMakeLists.txt │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.cpp │ ├── partitions.csv │ ├── sdkconfig │ ├── sdkconfig.defaults │ ├── sdkconfig.defaults.esp32s3 │ └── sdkconfig.old ├── lvgl_qrcode │ ├── CMakeLists.txt │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.cpp │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old ├── motion_detection │ ├── README.rst │ ├── lcd │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── app_main.cpp │ │ ├── sdkconfig │ │ └── sdkconfig.old │ ├── terminal │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── app_main.cpp │ │ ├── sdkconfig │ │ └── sdkconfig.old │ └── web │ │ ├── CMakeLists.txt │ │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.cpp │ │ ├── partitions.csv │ │ ├── sdkconfig │ │ └── sdkconfig.old ├── mp3_demo │ ├── CMakeLists.txt │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app_main.cpp │ │ ├── audio.c │ │ ├── include │ │ │ ├── audio.h │ │ │ └── ui_audio.h │ │ └── ui_audio.c │ ├── partitions.csv │ ├── sdkconfig │ ├── sdkconfig.old │ └── spiffs │ │ ├── 404-41-4.mp3 │ │ └── 404-41-5.mp3 ├── speech_recognition_cn │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app │ │ │ ├── app_audio.c │ │ │ ├── app_data_parse.c │ │ │ ├── app_led.c │ │ │ ├── app_network.c │ │ │ ├── app_server.c │ │ │ └── app_sr.c │ │ ├── app_main.cpp │ │ ├── font │ │ │ ├── font_app.c │ │ │ ├── font_app_16.c │ │ │ ├── font_cmd_cn_36.c │ │ │ ├── font_cmd_en_36.c │ │ │ ├── font_en_12.c │ │ │ ├── font_en_14.c │ │ │ ├── font_en_16.c │ │ │ ├── font_en_24.c │ │ │ ├── font_en_64.c │ │ │ ├── font_en_bold_36.c │ │ │ └── font_hint_16.c │ │ ├── image │ │ │ ├── brightness_off.c │ │ │ ├── brightness_on.c │ │ │ ├── esp_logo.c │ │ │ ├── esp_logo_tiny.c │ │ │ ├── esp_text.c │ │ │ ├── fan_off.c │ │ │ ├── fan_on.c │ │ │ ├── light_off.c │ │ │ ├── light_on.c │ │ │ ├── media_off.c │ │ │ ├── media_on.c │ │ │ ├── mic_logo.c │ │ │ ├── mic_off.c │ │ │ ├── mic_on.c │ │ │ ├── mute_off.c │ │ │ ├── mute_on.c │ │ │ ├── security_off.c │ │ │ ├── security_on.c │ │ │ ├── volume_off.c │ │ │ └── volume_on.c │ │ ├── include │ │ │ ├── app_audio.h │ │ │ ├── app_data_parse.h │ │ │ ├── app_led.h │ │ │ ├── app_network.h │ │ │ ├── app_server.h │ │ │ ├── app_sr.h │ │ │ ├── ui_lang.h │ │ │ └── ui_main.h │ │ ├── sr_handler.c │ │ └── ui │ │ │ ├── ui.c │ │ │ ├── ui_boot_animate.c │ │ │ ├── ui_clock.c │ │ │ ├── ui_dev_ctrl.c │ │ │ ├── ui_led_ctrl.c │ │ │ ├── ui_mute.c │ │ │ ├── ui_network.c │ │ │ ├── ui_speech.c │ │ │ └── ui_status_bar.c │ ├── partitions_cn.csv │ ├── sdkconfig │ ├── sdkconfig.old │ └── spiffs │ │ └── audio │ │ └── wake.pcm ├── speech_recognition_en │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── app │ │ │ ├── app_audio.c │ │ │ ├── app_data_parse.c │ │ │ ├── app_led.c │ │ │ ├── app_network.c │ │ │ ├── app_server.c │ │ │ └── app_sr.c │ │ ├── app_main.cpp │ │ ├── font │ │ │ ├── font_app.c │ │ │ ├── font_app_16.c │ │ │ ├── font_cmd_cn_36.c │ │ │ ├── font_cmd_en_36.c │ │ │ ├── font_en_12.c │ │ │ ├── font_en_14.c │ │ │ ├── font_en_16.c │ │ │ ├── font_en_24.c │ │ │ ├── font_en_64.c │ │ │ ├── font_en_bold_36.c │ │ │ └── font_hint_16.c │ │ ├── image │ │ │ ├── brightness_off.c │ │ │ ├── brightness_on.c │ │ │ ├── esp_logo.c │ │ │ ├── esp_logo_tiny.c │ │ │ ├── esp_text.c │ │ │ ├── fan_off.c │ │ │ ├── fan_on.c │ │ │ ├── light_off.c │ │ │ ├── light_on.c │ │ │ ├── media_off.c │ │ │ ├── media_on.c │ │ │ ├── mic_logo.c │ │ │ ├── mic_off.c │ │ │ ├── mic_on.c │ │ │ ├── mute_off.c │ │ │ ├── mute_on.c │ │ │ ├── security_off.c │ │ │ ├── security_on.c │ │ │ ├── volume_off.c │ │ │ └── volume_on.c │ │ ├── include │ │ │ ├── app_audio.h │ │ │ ├── app_data_parse.h │ │ │ ├── app_led.h │ │ │ ├── app_network.h │ │ │ ├── app_server.h │ │ │ ├── app_sr.h │ │ │ ├── ui_lang.h │ │ │ └── ui_main.h │ │ ├── sr_handler.c │ │ └── ui │ │ │ ├── ui.c │ │ │ ├── ui_boot_animate.c │ │ │ ├── ui_clock.c │ │ │ ├── ui_dev_ctrl.c │ │ │ ├── ui_led_ctrl.c │ │ │ ├── ui_mute.c │ │ │ ├── ui_network.c │ │ │ ├── ui_speech.c │ │ │ └── ui_status_bar.c │ ├── partitions_en.csv │ ├── sdkconfig │ ├── sdkconfig.old │ └── spiffs │ │ ├── audio │ │ └── wake.pcm │ │ └── web │ │ ├── css │ │ ├── style.css │ │ └── style.min.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ │ ├── images │ │ └── bg.png │ │ ├── index-en.html │ │ ├── index-zh.html │ │ └── js │ │ ├── cmudict.0.7a.zip │ │ ├── common.js │ │ ├── index.js │ │ ├── index.min.js │ │ └── jszip-utils-ie.min.js ├── touch_panel_calibration │ ├── CMakeLists.txt │ ├── main │ │ ├── CMakeLists.txt │ │ └── app_main.cpp │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old └── ws2812_demo │ ├── CMakeLists.txt │ ├── main │ ├── CMakeLists.txt │ └── app_main.cpp │ ├── partitions.csv │ ├── sdkconfig │ └── sdkconfig.old └── tools └── ci ├── build_examples.sh └── build_examples_cmake.sh /Music/404-41-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/404-41-4.mp3 -------------------------------------------------------------------------------- /Music/404-41-5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/404-41-5.mp3 -------------------------------------------------------------------------------- /Music/Canon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/Canon.mp3 -------------------------------------------------------------------------------- /Music/For Elise.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/For Elise.mp3 -------------------------------------------------------------------------------- /Music/Lady GaGa-Poker Face.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/Lady GaGa-Poker Face.mp3 -------------------------------------------------------------------------------- /Music/SongTaste.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/SongTaste.mp3 -------------------------------------------------------------------------------- /Music/To_meet_the_prime_time_44k.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/To_meet_the_prime_time_44k.mp3 -------------------------------------------------------------------------------- /Music/Waka Waka.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/Waka Waka.mp3 -------------------------------------------------------------------------------- /Music/Wonder Girls-Nobody.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/Wonder Girls-Nobody.mp3 -------------------------------------------------------------------------------- /Music/dukou.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/dukou.mp3 -------------------------------------------------------------------------------- /Music/mirboy-it's ok.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/mirboy-it's ok.mp3 -------------------------------------------------------------------------------- /Music/myheart_44k.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/Music/myheart_44k.mp3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/README.md -------------------------------------------------------------------------------- /components/bus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/CMakeLists.txt -------------------------------------------------------------------------------- /components/bus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/Kconfig -------------------------------------------------------------------------------- /components/bus/bsp_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/bsp_i2c.c -------------------------------------------------------------------------------- /components/bus/bsp_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/bsp_i2s.c -------------------------------------------------------------------------------- /components/bus/bsp_sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/bsp_sdcard.c -------------------------------------------------------------------------------- /components/bus/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/component.mk -------------------------------------------------------------------------------- /components/bus/i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/i2c_bus.c -------------------------------------------------------------------------------- /components/bus/include/bsp_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/include/bsp_i2c.h -------------------------------------------------------------------------------- /components/bus/include/bsp_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/include/bsp_i2s.h -------------------------------------------------------------------------------- /components/bus/include/bsp_sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/include/bsp_sdcard.h -------------------------------------------------------------------------------- /components/bus/include/i2c_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/include/i2c_bus.h -------------------------------------------------------------------------------- /components/bus/include/spi_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/include/spi_bus.h -------------------------------------------------------------------------------- /components/bus/spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/spi_bus.c -------------------------------------------------------------------------------- /components/bus/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/test/CMakeLists.txt -------------------------------------------------------------------------------- /components/bus/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/test/component.mk -------------------------------------------------------------------------------- /components/bus/test/test_i2c_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/test/test_i2c_bus.c -------------------------------------------------------------------------------- /components/bus/test/test_spi_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/bus/test/test_spi_bus.c -------------------------------------------------------------------------------- /components/codec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/codec/CMakeLists.txt -------------------------------------------------------------------------------- /components/codec/es8311.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/codec/es8311.c -------------------------------------------------------------------------------- /components/codec/include/audio_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/codec/include/audio_hal.h -------------------------------------------------------------------------------- /components/codec/include/es8311.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/codec/include/es8311.h -------------------------------------------------------------------------------- /components/codec/include/esxxx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/codec/include/esxxx_common.h -------------------------------------------------------------------------------- /components/esp-code-scanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp-code-scanner/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp-code-scanner/include/esp_code_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp-code-scanner/include/esp_code_scanner.h -------------------------------------------------------------------------------- /components/esp-code-scanner/lib/esp32/libesp-code-scanner.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp-code-scanner/lib/esp32/libesp-code-scanner.a -------------------------------------------------------------------------------- /components/esp-code-scanner/lib/esp32s2/libesp-code-scanner.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp-code-scanner/lib/esp32s2/libesp-code-scanner.a -------------------------------------------------------------------------------- /components/esp-code-scanner/lib/esp32s3/libesp-code-scanner.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp-code-scanner/lib/esp32s3/libesp-code-scanner.a -------------------------------------------------------------------------------- /components/esp-code-scanner/lib/libnewlib_iconv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp-code-scanner/lib/libnewlib_iconv.a -------------------------------------------------------------------------------- /components/esp32-camera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp32-camera/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/Kconfig -------------------------------------------------------------------------------- /components/esp32-camera/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/LICENSE -------------------------------------------------------------------------------- /components/esp32-camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/README.md -------------------------------------------------------------------------------- /components/esp32-camera/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/component.mk -------------------------------------------------------------------------------- /components/esp32-camera/conversions/esp_jpg_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/esp_jpg_decode.c -------------------------------------------------------------------------------- /components/esp32-camera/conversions/include/esp_jpg_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/include/esp_jpg_decode.h -------------------------------------------------------------------------------- /components/esp32-camera/conversions/include/img_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/include/img_converters.h -------------------------------------------------------------------------------- /components/esp32-camera/conversions/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/jpge.cpp -------------------------------------------------------------------------------- /components/esp32-camera/conversions/private_include/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/private_include/jpge.h -------------------------------------------------------------------------------- /components/esp32-camera/conversions/private_include/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/private_include/yuv.h -------------------------------------------------------------------------------- /components/esp32-camera/conversions/to_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/to_bmp.c -------------------------------------------------------------------------------- /components/esp32-camera/conversions/to_jpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/to_jpg.cpp -------------------------------------------------------------------------------- /components/esp32-camera/conversions/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/conversions/yuv.c -------------------------------------------------------------------------------- /components/esp32-camera/driver/cam_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/cam_hal.c -------------------------------------------------------------------------------- /components/esp32-camera/driver/esp_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/esp_camera.c -------------------------------------------------------------------------------- /components/esp32-camera/driver/include/esp_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/include/esp_camera.h -------------------------------------------------------------------------------- /components/esp32-camera/driver/include/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/include/sensor.h -------------------------------------------------------------------------------- /components/esp32-camera/driver/private_include/cam_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/private_include/cam_hal.h -------------------------------------------------------------------------------- /components/esp32-camera/driver/private_include/sccb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/private_include/sccb.h -------------------------------------------------------------------------------- /components/esp32-camera/driver/private_include/xclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/private_include/xclk.h -------------------------------------------------------------------------------- /components/esp32-camera/driver/sccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/sccb.c -------------------------------------------------------------------------------- /components/esp32-camera/driver/sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/driver/sensor.c -------------------------------------------------------------------------------- /components/esp32-camera/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/examples/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp32-camera/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/examples/Makefile -------------------------------------------------------------------------------- /components/esp32-camera/examples/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/examples/main/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp32-camera/examples/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/examples/main/component.mk -------------------------------------------------------------------------------- /components/esp32-camera/examples/main/take_picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/examples/main/take_picture.c -------------------------------------------------------------------------------- /components/esp32-camera/examples/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/examples/sdkconfig.defaults -------------------------------------------------------------------------------- /components/esp32-camera/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/idf_component.yml -------------------------------------------------------------------------------- /components/esp32-camera/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/library.json -------------------------------------------------------------------------------- /components/esp32-camera/sensors/bf3005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/bf3005.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/gc0308.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/gc0308.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/gc032a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/gc032a.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/gc2145.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/gc2145.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/nt99141.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/nt99141.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/ov2640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/ov2640.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/ov3660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/ov3660.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/ov5640.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/ov7670.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/ov7670.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/ov7725.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/ov7725.c -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/bf3005.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/bf3005.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/bf3005_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/bf3005_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc0308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc0308.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc0308_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc0308_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc0308_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc0308_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc032a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc032a.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc032a_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc032a_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc032a_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc032a_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc2145.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc2145.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc2145_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc2145_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/gc2145_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/gc2145_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/nt99141.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/nt99141.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/nt99141_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/nt99141_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/nt99141_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/nt99141_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov2640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov2640.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov2640_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov2640_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov2640_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov2640_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov3660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov3660.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov3660_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov3660_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov3660_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov3660_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov5640.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov5640_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov5640_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov5640_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov5640_settings.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov7670.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov7670_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov7670_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov7725.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov7725.h -------------------------------------------------------------------------------- /components/esp32-camera/sensors/private_include/ov7725_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/sensors/private_include/ov7725_regs.h -------------------------------------------------------------------------------- /components/esp32-camera/target/esp32/ll_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/esp32/ll_cam.c -------------------------------------------------------------------------------- /components/esp32-camera/target/esp32s2/ll_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/esp32s2/ll_cam.c -------------------------------------------------------------------------------- /components/esp32-camera/target/esp32s2/private_include/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/esp32s2/private_include/tjpgd.h -------------------------------------------------------------------------------- /components/esp32-camera/target/esp32s2/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/esp32s2/tjpgd.c -------------------------------------------------------------------------------- /components/esp32-camera/target/esp32s3/ll_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/esp32s3/ll_cam.c -------------------------------------------------------------------------------- /components/esp32-camera/target/private_include/ll_cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/private_include/ll_cam.h -------------------------------------------------------------------------------- /components/esp32-camera/target/xclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/target/xclk.c -------------------------------------------------------------------------------- /components/esp32-camera/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/test/CMakeLists.txt -------------------------------------------------------------------------------- /components/esp32-camera/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/test/component.mk -------------------------------------------------------------------------------- /components/esp32-camera/test/pictures/test_inside.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/test/pictures/test_inside.jpeg -------------------------------------------------------------------------------- /components/esp32-camera/test/pictures/test_outside.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/test/pictures/test_outside.jpeg -------------------------------------------------------------------------------- /components/esp32-camera/test/pictures/testimg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/test/pictures/testimg.jpeg -------------------------------------------------------------------------------- /components/esp32-camera/test/test_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/esp32-camera/test/test_camera.c -------------------------------------------------------------------------------- /components/fb_gfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/fb_gfx/CMakeLists.txt -------------------------------------------------------------------------------- /components/fb_gfx/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/fb_gfx/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /components/fb_gfx/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/fb_gfx/component.mk -------------------------------------------------------------------------------- /components/fb_gfx/fb_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/fb_gfx/fb_gfx.c -------------------------------------------------------------------------------- /components/fb_gfx/include/fb_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/fb_gfx/include/fb_gfx.h -------------------------------------------------------------------------------- /components/libhelix-mp3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/CMakeLists.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/Umakefil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/Umakefil -------------------------------------------------------------------------------- /components/libhelix-mp3/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/docs/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/docs/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/docs/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/docs/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/docs/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/docs/cpuusage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/docs/cpuusage.xls -------------------------------------------------------------------------------- /components/libhelix-mp3/docs/memory.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/docs/memory.xls -------------------------------------------------------------------------------- /components/libhelix-mp3/mp3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/mp3dec.c -------------------------------------------------------------------------------- /components/libhelix-mp3/mp3tabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/mp3tabs.c -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/mp3common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/mp3common.h -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/mp3dec.h -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/mpadecobjfixpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/mpadecobjfixpt.h -------------------------------------------------------------------------------- /components/libhelix-mp3/pub/statname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/pub/statname.h -------------------------------------------------------------------------------- /components/libhelix-mp3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/readme.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/arm/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/arm/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/arm/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/arm/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/arm/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/arm/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/arm/asmmisc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/arm/asmmisc.s -------------------------------------------------------------------------------- /components/libhelix-mp3/real/arm/asmpoly.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/arm/asmpoly.s -------------------------------------------------------------------------------- /components/libhelix-mp3/real/arm/asmpoly_gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/arm/asmpoly_gcc.S -------------------------------------------------------------------------------- /components/libhelix-mp3/real/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/assembly.h -------------------------------------------------------------------------------- /components/libhelix-mp3/real/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/bitstream.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/buffers.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/coder.h -------------------------------------------------------------------------------- /components/libhelix-mp3/real/dct32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/dct32.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/dequant.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/dqchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/dqchan.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/huffman.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/hufftabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/hufftabs.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/imdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/imdct.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/polyphase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/polyphase.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armads/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armads/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armads/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armads/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armads/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armads/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armads/mp3dec.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armads/mp3dec.mcp -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armads/testwrap.mcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armads/testwrap.mcp -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armwince/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armwince/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armwince/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armwince/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armwince/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armwince/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armwince/mp3dec.vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armwince/mp3dec.vcp -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armwince/mp3dec.vcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armwince/mp3dec.vcw -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/armwince/testwrap.vcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/armwince/testwrap.vcp -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/visualc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/visualc/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/visualc/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/visualc/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/visualc/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/visualc/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/visualc/mp3dec.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/visualc/mp3dec.dsp -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/visualc/mp3dec.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/visualc/mp3dec.dsw -------------------------------------------------------------------------------- /components/libhelix-mp3/real/projects/visualc/testwrap.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/projects/visualc/testwrap.dsp -------------------------------------------------------------------------------- /components/libhelix-mp3/real/scalfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/scalfact.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/stproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/stproc.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/subband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/subband.c -------------------------------------------------------------------------------- /components/libhelix-mp3/real/trigtabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/real/trigtabs.c -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/LICENSE.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/RCSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/RCSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/RPSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/RPSL.txt -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/Umakefil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/Umakefil -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/debug.c -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/debug.h -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/main.c -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/timing.c -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/timing.h -------------------------------------------------------------------------------- /components/libhelix-mp3/testwrap/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/libhelix-mp3/testwrap/winmain.cpp -------------------------------------------------------------------------------- /components/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/CMakeLists.txt -------------------------------------------------------------------------------- /components/modules/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/Kconfig -------------------------------------------------------------------------------- /components/modules/ai/who_ai_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_ai_utils.cpp -------------------------------------------------------------------------------- /components/modules/ai/who_ai_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_ai_utils.hpp -------------------------------------------------------------------------------- /components/modules/ai/who_cat_face_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_cat_face_detection.cpp -------------------------------------------------------------------------------- /components/modules/ai/who_cat_face_detection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_cat_face_detection.hpp -------------------------------------------------------------------------------- /components/modules/ai/who_color_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_color_detection.cpp -------------------------------------------------------------------------------- /components/modules/ai/who_color_detection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_color_detection.hpp -------------------------------------------------------------------------------- /components/modules/ai/who_human_face_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_human_face_detection.cpp -------------------------------------------------------------------------------- /components/modules/ai/who_human_face_detection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_human_face_detection.hpp -------------------------------------------------------------------------------- /components/modules/ai/who_human_face_recognition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_human_face_recognition.cpp -------------------------------------------------------------------------------- /components/modules/ai/who_human_face_recognition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_human_face_recognition.hpp -------------------------------------------------------------------------------- /components/modules/ai/who_motion_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_motion_detection.cpp -------------------------------------------------------------------------------- /components/modules/ai/who_motion_detection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ai/who_motion_detection.hpp -------------------------------------------------------------------------------- /components/modules/button/who_adc_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/button/who_adc_button.c -------------------------------------------------------------------------------- /components/modules/button/who_adc_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/button/who_adc_button.h -------------------------------------------------------------------------------- /components/modules/button/who_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/button/who_button.c -------------------------------------------------------------------------------- /components/modules/button/who_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/button/who_button.h -------------------------------------------------------------------------------- /components/modules/camera/who_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/camera/who_camera.c -------------------------------------------------------------------------------- /components/modules/camera/who_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/camera/who_camera.h -------------------------------------------------------------------------------- /components/modules/hdc1080/hdc1080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/hdc1080/hdc1080.c -------------------------------------------------------------------------------- /components/modules/hdc1080/hdc1080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/hdc1080/hdc1080.h -------------------------------------------------------------------------------- /components/modules/imu/qma7981.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/imu/qma7981.c -------------------------------------------------------------------------------- /components/modules/imu/qma7981.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/imu/qma7981.h -------------------------------------------------------------------------------- /components/modules/lcd/logo_en_240x240_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/lcd/logo_en_240x240_lcd.h -------------------------------------------------------------------------------- /components/modules/lcd/who_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/lcd/who_lcd.c -------------------------------------------------------------------------------- /components/modules/lcd/who_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/lcd/who_lcd.h -------------------------------------------------------------------------------- /components/modules/led/who_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/led/who_led.c -------------------------------------------------------------------------------- /components/modules/led/who_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/led/who_led.h -------------------------------------------------------------------------------- /components/modules/tp/ns2009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/tp/ns2009.c -------------------------------------------------------------------------------- /components/modules/tp/ns2009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/tp/ns2009.h -------------------------------------------------------------------------------- /components/modules/trace/who_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/trace/who_trace.c -------------------------------------------------------------------------------- /components/modules/trace/who_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/trace/who_trace.h -------------------------------------------------------------------------------- /components/modules/web/app_httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/app_httpd.cpp -------------------------------------------------------------------------------- /components/modules/web/app_httpd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/app_httpd.hpp -------------------------------------------------------------------------------- /components/modules/web/app_mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/app_mdns.c -------------------------------------------------------------------------------- /components/modules/web/app_mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/app_mdns.h -------------------------------------------------------------------------------- /components/modules/web/app_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/app_wifi.c -------------------------------------------------------------------------------- /components/modules/web/app_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/app_wifi.h -------------------------------------------------------------------------------- /components/modules/web/www/compress_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/compress_pages.sh -------------------------------------------------------------------------------- /components/modules/web/www/index_ov2640.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/index_ov2640.html -------------------------------------------------------------------------------- /components/modules/web/www/index_ov2640.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/index_ov2640.html.gz -------------------------------------------------------------------------------- /components/modules/web/www/index_ov3660.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/index_ov3660.html -------------------------------------------------------------------------------- /components/modules/web/www/index_ov3660.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/index_ov3660.html.gz -------------------------------------------------------------------------------- /components/modules/web/www/index_ov5640.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/index_ov5640.html -------------------------------------------------------------------------------- /components/modules/web/www/index_ov5640.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/index_ov5640.html.gz -------------------------------------------------------------------------------- /components/modules/web/www/monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/monitor.html -------------------------------------------------------------------------------- /components/modules/web/www/monitor.html.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/web/www/monitor.html.gz -------------------------------------------------------------------------------- /components/modules/ws2812/led_strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ws2812/led_strip.h -------------------------------------------------------------------------------- /components/modules/ws2812/led_strip_rmt_ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ws2812/led_strip_rmt_ws2812.c -------------------------------------------------------------------------------- /components/modules/ws2812/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ws2812/ws2812.c -------------------------------------------------------------------------------- /components/modules/ws2812/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/modules/ws2812/ws2812.h -------------------------------------------------------------------------------- /components/screen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/CMakeLists.txt -------------------------------------------------------------------------------- /components/screen/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/Kconfig -------------------------------------------------------------------------------- /components/screen/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/component.mk -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9341/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9341/ili9341.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9341/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9341/ili9341.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9486/ili9486.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9486/ili9486.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9486/ili9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9486/ili9486.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9488/ili9488.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9488/ili9488.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9488/ili9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9488/ili9488.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9806/ili9806.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9806/ili9806.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ili9806/ili9806.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ili9806/ili9806.h -------------------------------------------------------------------------------- /components/screen/controller_driver/nt35510/nt35510.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/nt35510/nt35510.c -------------------------------------------------------------------------------- /components/screen/controller_driver/nt35510/nt35510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/nt35510/nt35510.h -------------------------------------------------------------------------------- /components/screen/controller_driver/rm68120/rm68120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/rm68120/rm68120.c -------------------------------------------------------------------------------- /components/screen/controller_driver/rm68120/rm68120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/rm68120/rm68120.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1306/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1306/ssd1306.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1306/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1306/ssd1306.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1307/ssd1307.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1307/ssd1307.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1307/ssd1307.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1307/ssd1307.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1322/ssd1322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1322/ssd1322.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1322/ssd1322.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1322/ssd1322.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1351/ssd1351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1351/ssd1351.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1351/ssd1351.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1351/ssd1351.h -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1963/ssd1963.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1963/ssd1963.c -------------------------------------------------------------------------------- /components/screen/controller_driver/ssd1963/ssd1963.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/ssd1963/ssd1963.h -------------------------------------------------------------------------------- /components/screen/controller_driver/st7789/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/st7789/st7789.c -------------------------------------------------------------------------------- /components/screen/controller_driver/st7789/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/st7789/st7789.h -------------------------------------------------------------------------------- /components/screen/controller_driver/st7796/st7796.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/st7796/st7796.c -------------------------------------------------------------------------------- /components/screen/controller_driver/st7796/st7796.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/controller_driver/st7796/st7796.h -------------------------------------------------------------------------------- /components/screen/interface_driver/scr_interface_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/interface_driver/scr_interface_driver.c -------------------------------------------------------------------------------- /components/screen/interface_driver/scr_interface_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/interface_driver/scr_interface_driver.h -------------------------------------------------------------------------------- /components/screen/screen_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/screen_driver.c -------------------------------------------------------------------------------- /components/screen/screen_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/screen_driver.h -------------------------------------------------------------------------------- /components/screen/screen_utility/interface_drv_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/screen_utility/interface_drv_def.h -------------------------------------------------------------------------------- /components/screen/screen_utility/screen_utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/screen_utility/screen_utility.c -------------------------------------------------------------------------------- /components/screen/screen_utility/screen_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/screen_utility/screen_utility.h -------------------------------------------------------------------------------- /components/screen/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/test/CMakeLists.txt -------------------------------------------------------------------------------- /components/screen/test/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/test/component.mk -------------------------------------------------------------------------------- /components/screen/test/lcd_color_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/test/lcd_color_test.c -------------------------------------------------------------------------------- /components/screen/test/lcd_mono_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/screen/test/lcd_mono_test.c -------------------------------------------------------------------------------- /components/sr_ringbuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/CMakeLists.txt -------------------------------------------------------------------------------- /components/sr_ringbuf/EspAudioAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/EspAudioAlloc.c -------------------------------------------------------------------------------- /components/sr_ringbuf/EspAudioAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/EspAudioAlloc.h -------------------------------------------------------------------------------- /components/sr_ringbuf/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/lock.c -------------------------------------------------------------------------------- /components/sr_ringbuf/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/lock.h -------------------------------------------------------------------------------- /components/sr_ringbuf/ringbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/ringbuf.c -------------------------------------------------------------------------------- /components/sr_ringbuf/ringbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/components/sr_ringbuf/ringbuf.h -------------------------------------------------------------------------------- /docs/Assemble-esp32-s3-eye.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/docs/Assemble-esp32-s3-eye.pdf -------------------------------------------------------------------------------- /examples/audio_record_play/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/CMakeLists.txt -------------------------------------------------------------------------------- /examples/audio_record_play/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/audio_record_play/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/main/app_main.cpp -------------------------------------------------------------------------------- /examples/audio_record_play/main/include/ui_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/main/include/ui_record.h -------------------------------------------------------------------------------- /examples/audio_record_play/main/ui_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/main/ui_record.c -------------------------------------------------------------------------------- /examples/audio_record_play/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/partitions.csv -------------------------------------------------------------------------------- /examples/audio_record_play/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/sdkconfig -------------------------------------------------------------------------------- /examples/audio_record_play/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/audio_record_play/sdkconfig.old -------------------------------------------------------------------------------- /examples/cat_face_detection/lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/lcd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cat_face_detection/lcd/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") -------------------------------------------------------------------------------- /examples/cat_face_detection/lcd/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/lcd/main/app_main.cpp -------------------------------------------------------------------------------- /examples/cat_face_detection/lcd/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/lcd/sdkconfig -------------------------------------------------------------------------------- /examples/cat_face_detection/lcd/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/lcd/sdkconfig.old -------------------------------------------------------------------------------- /examples/cat_face_detection/terminal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/terminal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cat_face_detection/terminal/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") 2 | -------------------------------------------------------------------------------- /examples/cat_face_detection/terminal/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/terminal/main/app_main.cpp -------------------------------------------------------------------------------- /examples/cat_face_detection/terminal/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/terminal/sdkconfig -------------------------------------------------------------------------------- /examples/cat_face_detection/terminal/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/cat_face_detection/terminal/sdkconfig.old -------------------------------------------------------------------------------- /examples/code_recognition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/CMakeLists.txt -------------------------------------------------------------------------------- /examples/code_recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/README.md -------------------------------------------------------------------------------- /examples/code_recognition/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/code_recognition/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/main/app_main.c -------------------------------------------------------------------------------- /examples/code_recognition/main/app_peripherals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/main/app_peripherals.c -------------------------------------------------------------------------------- /examples/code_recognition/main/include/app_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/main/include/app_peripherals.h -------------------------------------------------------------------------------- /examples/code_recognition/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/sdkconfig -------------------------------------------------------------------------------- /examples/code_recognition/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/code_recognition/sdkconfig.old -------------------------------------------------------------------------------- /examples/color_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/README.md -------------------------------------------------------------------------------- /examples/color_detection/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/README_CN.md -------------------------------------------------------------------------------- /examples/color_detection/lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/color_detection/lcd/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/color_detection/lcd/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/main/app_main.cpp -------------------------------------------------------------------------------- /examples/color_detection/lcd/main/event_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/main/event_logic.cpp -------------------------------------------------------------------------------- /examples/color_detection/lcd/main/event_logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/main/event_logic.hpp -------------------------------------------------------------------------------- /examples/color_detection/lcd/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/partitions.csv -------------------------------------------------------------------------------- /examples/color_detection/lcd/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/sdkconfig -------------------------------------------------------------------------------- /examples/color_detection/lcd/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/color_detection/lcd/sdkconfig.old -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/main/app_main.c -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/main/include/tts_urat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/main/include/tts_urat.h -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/main/tts_urat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/main/tts_urat.c -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/partitions.csv -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/sdkconfig -------------------------------------------------------------------------------- /examples/esp-skainet/chinese_tts/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/chinese_tts/sdkconfig.old -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/README.md -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/app_main.c -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/ie_kaiji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/ie_kaiji.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_0.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_1.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_10.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_11.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_12.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_13.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_14.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_15.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_16.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_17.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_2.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_3.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_4.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_5.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_6.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_7.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_8.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/m_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/m_9.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/speech_commands_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/speech_commands_action.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/include/wake_up_prompt_tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/include/wake_up_prompt_tone.h -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/main/speech_commands_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/main/speech_commands_action.c -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/partitions.csv -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/sdkconfig -------------------------------------------------------------------------------- /examples/esp-skainet/cn_speech_commands_recognition/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/cn_speech_commands_recognition/sdkconfig.old -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/README.md -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/app_main.c -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_16_degress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_16_degress.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_17_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_17_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_18_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_18_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_19_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_19_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_20_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_20_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_21_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_21_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_22_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_22_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_23_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_23_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_24_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_24_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_25_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_25_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_26_degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_26_degrees.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_decrease_the_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_decrease_the_volume.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_green_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_green_color.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_highest_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_highest_volume.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_increase_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_increase_volume.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_lowest_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_lowest_volume.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_make_me_a_coffee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_make_me_a_coffee.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_make_me_a_tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_make_me_a_tea.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_play_news_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_play_news_channel.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_red_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_red_color.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_sing_a_song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_sing_a_song.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_tell_me_a_joke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_tell_me_a_joke.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_all_the_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_all_the_light.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_my_soundbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_my_soundbox.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_the_TV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_the_TV.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_the_air_conditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_the_air_conditioner.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_the_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_off_the_light.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_all_the_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_all_the_light.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_my_soundbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_my_soundbox.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_the_TV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_the_TV.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_the_air_conditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_the_air_conditioner.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_the_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/me_turn_on_the_light.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/speech_commands_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/speech_commands_action.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/include/wake_up_prompt_tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/include/wake_up_prompt_tone.h -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/main/speech_commands_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/main/speech_commands_action.c -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/partitions.csv -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/sdkconfig -------------------------------------------------------------------------------- /examples/esp-skainet/en_speech_commands_recognition/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/en_speech_commands_recognition/sdkconfig.old -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/README.md -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/README_cn.md -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/main/app_main.c -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/partitions.csv -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/sdkconfig -------------------------------------------------------------------------------- /examples/esp-skainet/wake_word_detection/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/esp-skainet/wake_word_detection/sdkconfig.old -------------------------------------------------------------------------------- /examples/human_face_detection/lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/lcd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/human_face_detection/lcd/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") -------------------------------------------------------------------------------- /examples/human_face_detection/lcd/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/lcd/main/app_main.cpp -------------------------------------------------------------------------------- /examples/human_face_detection/lcd/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/lcd/partitions.csv -------------------------------------------------------------------------------- /examples/human_face_detection/lcd/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/lcd/sdkconfig -------------------------------------------------------------------------------- /examples/human_face_detection/lcd/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/lcd/sdkconfig.old -------------------------------------------------------------------------------- /examples/human_face_detection/terminal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/terminal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/human_face_detection/terminal/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") 2 | -------------------------------------------------------------------------------- /examples/human_face_detection/terminal/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/terminal/main/app_main.cpp -------------------------------------------------------------------------------- /examples/human_face_detection/terminal/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/terminal/partitions.csv -------------------------------------------------------------------------------- /examples/human_face_detection/terminal/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/terminal/sdkconfig -------------------------------------------------------------------------------- /examples/human_face_detection/terminal/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_detection/terminal/sdkconfig.old -------------------------------------------------------------------------------- /examples/human_face_recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/README.md -------------------------------------------------------------------------------- /examples/human_face_recognition/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/README_CN.md -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/main/app_main.cpp -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/main/event_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/main/event_logic.cpp -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/main/event_logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/main/event_logic.hpp -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/partitions.csv -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/sdkconfig -------------------------------------------------------------------------------- /examples/human_face_recognition/lcd/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/lcd/sdkconfig.old -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/main/app_main.cpp -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/main/event_logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/main/event_logic.cpp -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/main/event_logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/main/event_logic.hpp -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/partitions.csv -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/sdkconfig -------------------------------------------------------------------------------- /examples/human_face_recognition/terminal/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/human_face_recognition/terminal/sdkconfig.old -------------------------------------------------------------------------------- /examples/lvgl_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lvgl_demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lvgl_demo/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/main/app_main.cpp -------------------------------------------------------------------------------- /examples/lvgl_demo/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/partitions.csv -------------------------------------------------------------------------------- /examples/lvgl_demo/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/sdkconfig -------------------------------------------------------------------------------- /examples/lvgl_demo/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/sdkconfig.defaults -------------------------------------------------------------------------------- /examples/lvgl_demo/sdkconfig.defaults.esp32s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/sdkconfig.defaults.esp32s3 -------------------------------------------------------------------------------- /examples/lvgl_demo/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_demo/sdkconfig.old -------------------------------------------------------------------------------- /examples/lvgl_qrcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_qrcode/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lvgl_qrcode/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_qrcode/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lvgl_qrcode/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_qrcode/main/app_main.cpp -------------------------------------------------------------------------------- /examples/lvgl_qrcode/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_qrcode/partitions.csv -------------------------------------------------------------------------------- /examples/lvgl_qrcode/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_qrcode/sdkconfig -------------------------------------------------------------------------------- /examples/lvgl_qrcode/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/lvgl_qrcode/sdkconfig.old -------------------------------------------------------------------------------- /examples/motion_detection/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/README.rst -------------------------------------------------------------------------------- /examples/motion_detection/lcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/lcd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/motion_detection/lcd/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") -------------------------------------------------------------------------------- /examples/motion_detection/lcd/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/lcd/main/app_main.cpp -------------------------------------------------------------------------------- /examples/motion_detection/lcd/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/lcd/sdkconfig -------------------------------------------------------------------------------- /examples/motion_detection/lcd/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/lcd/sdkconfig.old -------------------------------------------------------------------------------- /examples/motion_detection/terminal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/terminal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/motion_detection/terminal/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") 2 | -------------------------------------------------------------------------------- /examples/motion_detection/terminal/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/terminal/main/app_main.cpp -------------------------------------------------------------------------------- /examples/motion_detection/terminal/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/terminal/sdkconfig -------------------------------------------------------------------------------- /examples/motion_detection/terminal/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/terminal/sdkconfig.old -------------------------------------------------------------------------------- /examples/motion_detection/web/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/web/CMakeLists.txt -------------------------------------------------------------------------------- /examples/motion_detection/web/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") 2 | -------------------------------------------------------------------------------- /examples/motion_detection/web/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/web/main/app_main.cpp -------------------------------------------------------------------------------- /examples/motion_detection/web/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/web/partitions.csv -------------------------------------------------------------------------------- /examples/motion_detection/web/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/web/sdkconfig -------------------------------------------------------------------------------- /examples/motion_detection/web/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/motion_detection/web/sdkconfig.old -------------------------------------------------------------------------------- /examples/mp3_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mp3_demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mp3_demo/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/main/app_main.cpp -------------------------------------------------------------------------------- /examples/mp3_demo/main/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/main/audio.c -------------------------------------------------------------------------------- /examples/mp3_demo/main/include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/main/include/audio.h -------------------------------------------------------------------------------- /examples/mp3_demo/main/include/ui_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/main/include/ui_audio.h -------------------------------------------------------------------------------- /examples/mp3_demo/main/ui_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/main/ui_audio.c -------------------------------------------------------------------------------- /examples/mp3_demo/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/partitions.csv -------------------------------------------------------------------------------- /examples/mp3_demo/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/sdkconfig -------------------------------------------------------------------------------- /examples/mp3_demo/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/sdkconfig.old -------------------------------------------------------------------------------- /examples/mp3_demo/spiffs/404-41-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/spiffs/404-41-4.mp3 -------------------------------------------------------------------------------- /examples/mp3_demo/spiffs/404-41-5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/mp3_demo/spiffs/404-41-5.mp3 -------------------------------------------------------------------------------- /examples/speech_recognition_cn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/CMakeLists.txt -------------------------------------------------------------------------------- /examples/speech_recognition_cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/README.md -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app/app_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app/app_audio.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app/app_data_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app/app_data_parse.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app/app_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app/app_led.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app/app_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app/app_network.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app/app_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app/app_server.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app/app_sr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app/app_sr.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/app_main.cpp -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_app.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_app_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_app_16.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_cmd_cn_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_cmd_cn_36.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_cmd_en_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_cmd_en_36.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_en_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_en_12.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_en_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_en_14.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_en_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_en_16.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_en_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_en_24.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_en_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_en_64.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_en_bold_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_en_bold_36.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/font/font_hint_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/font/font_hint_16.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/brightness_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/brightness_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/brightness_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/brightness_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/esp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/esp_logo.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/esp_logo_tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/esp_logo_tiny.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/esp_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/esp_text.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/fan_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/fan_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/fan_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/fan_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/light_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/light_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/light_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/light_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/media_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/media_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/media_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/media_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/mic_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/mic_logo.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/mic_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/mic_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/mic_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/mic_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/mute_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/mute_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/mute_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/mute_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/security_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/security_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/security_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/security_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/volume_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/volume_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/image/volume_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/image/volume_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/app_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/app_audio.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/app_data_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/app_data_parse.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/app_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/app_led.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/app_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/app_network.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/app_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/app_server.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/app_sr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/app_sr.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/ui_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/ui_lang.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/include/ui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/include/ui_main.h -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/sr_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/sr_handler.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_boot_animate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_boot_animate.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_clock.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_dev_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_dev_ctrl.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_led_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_led_ctrl.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_mute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_mute.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_network.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_speech.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/main/ui/ui_status_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/main/ui/ui_status_bar.c -------------------------------------------------------------------------------- /examples/speech_recognition_cn/partitions_cn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/partitions_cn.csv -------------------------------------------------------------------------------- /examples/speech_recognition_cn/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/sdkconfig -------------------------------------------------------------------------------- /examples/speech_recognition_cn/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/sdkconfig.old -------------------------------------------------------------------------------- /examples/speech_recognition_cn/spiffs/audio/wake.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_cn/spiffs/audio/wake.pcm -------------------------------------------------------------------------------- /examples/speech_recognition_en/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/CMakeLists.txt -------------------------------------------------------------------------------- /examples/speech_recognition_en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/README.md -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app/app_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app/app_audio.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app/app_data_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app/app_data_parse.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app/app_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app/app_led.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app/app_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app/app_network.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app/app_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app/app_server.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app/app_sr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app/app_sr.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/app_main.cpp -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_app.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_app_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_app_16.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_cmd_cn_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_cmd_cn_36.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_cmd_en_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_cmd_en_36.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_en_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_en_12.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_en_14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_en_14.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_en_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_en_16.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_en_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_en_24.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_en_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_en_64.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_en_bold_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_en_bold_36.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/font/font_hint_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/font/font_hint_16.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/brightness_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/brightness_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/brightness_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/brightness_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/esp_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/esp_logo.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/esp_logo_tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/esp_logo_tiny.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/esp_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/esp_text.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/fan_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/fan_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/fan_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/fan_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/light_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/light_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/light_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/light_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/media_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/media_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/media_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/media_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/mic_logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/mic_logo.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/mic_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/mic_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/mic_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/mic_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/mute_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/mute_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/mute_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/mute_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/security_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/security_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/security_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/security_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/volume_off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/volume_off.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/image/volume_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/image/volume_on.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/app_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/app_audio.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/app_data_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/app_data_parse.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/app_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/app_led.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/app_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/app_network.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/app_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/app_server.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/app_sr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/app_sr.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/ui_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/ui_lang.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/include/ui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/include/ui_main.h -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/sr_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/sr_handler.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_boot_animate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_boot_animate.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_clock.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_dev_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_dev_ctrl.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_led_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_led_ctrl.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_mute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_mute.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_network.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_speech.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/main/ui/ui_status_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/main/ui/ui_status_bar.c -------------------------------------------------------------------------------- /examples/speech_recognition_en/partitions_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/partitions_en.csv -------------------------------------------------------------------------------- /examples/speech_recognition_en/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/sdkconfig -------------------------------------------------------------------------------- /examples/speech_recognition_en/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/sdkconfig.old -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/audio/wake.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/audio/wake.pcm -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/css/style.css -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/css/style.min.css -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/favicon.ico -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/fonts/iconfont.ttf -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/fonts/iconfont.woff -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/images/bg.png -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/index-en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/index-en.html -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/index-zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/index-zh.html -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/js/cmudict.0.7a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/js/cmudict.0.7a.zip -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/js/common.js -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/js/index.js -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/js/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/js/index.min.js -------------------------------------------------------------------------------- /examples/speech_recognition_en/spiffs/web/js/jszip-utils-ie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/speech_recognition_en/spiffs/web/js/jszip-utils-ie.min.js -------------------------------------------------------------------------------- /examples/touch_panel_calibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/touch_panel_calibration/CMakeLists.txt -------------------------------------------------------------------------------- /examples/touch_panel_calibration/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "app_main.cpp") -------------------------------------------------------------------------------- /examples/touch_panel_calibration/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/touch_panel_calibration/main/app_main.cpp -------------------------------------------------------------------------------- /examples/touch_panel_calibration/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/touch_panel_calibration/partitions.csv -------------------------------------------------------------------------------- /examples/touch_panel_calibration/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/touch_panel_calibration/sdkconfig -------------------------------------------------------------------------------- /examples/touch_panel_calibration/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/touch_panel_calibration/sdkconfig.old -------------------------------------------------------------------------------- /examples/ws2812_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/ws2812_demo/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ws2812_demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/ws2812_demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ws2812_demo/main/app_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/ws2812_demo/main/app_main.cpp -------------------------------------------------------------------------------- /examples/ws2812_demo/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/ws2812_demo/partitions.csv -------------------------------------------------------------------------------- /examples/ws2812_demo/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/ws2812_demo/sdkconfig -------------------------------------------------------------------------------- /examples/ws2812_demo/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/examples/ws2812_demo/sdkconfig.old -------------------------------------------------------------------------------- /tools/ci/build_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/tools/ci/build_examples.sh -------------------------------------------------------------------------------- /tools/ci/build_examples_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W00ng/ESP32-S3-EYE/HEAD/tools/ci/build_examples_cmake.sh --------------------------------------------------------------------------------