├── CMakeLists.txt ├── LICENSE ├── README.md ├── component.mk ├── docs └── img │ ├── pin_def_atom_echo.svg │ ├── pin_def_atom_lite.svg │ ├── pin_def_atom_matrix.svg │ ├── pin_def_atom_porta.svg │ ├── pin_def_atom_psram.svg │ ├── pin_def_atom_s3.svg │ ├── pin_def_atom_s3_porta.svg │ ├── pin_def_atom_u.svg │ ├── pin_def_core2_bus.svg │ ├── pin_def_core2_porta.svg │ ├── pin_def_core2_portb.svg │ ├── pin_def_core2_portc.svg │ ├── pin_def_core2_portd.svg │ ├── pin_def_core2_porte.svg │ ├── pin_def_core_bus.svg │ ├── pin_def_core_porta.svg │ ├── pin_def_core_portb.svg │ ├── pin_def_core_portc.svg │ ├── pin_def_core_portd.svg │ ├── pin_def_core_porte.svg │ ├── pin_def_coreink_bus.svg │ ├── pin_def_coreink_hat.svg │ ├── pin_def_cores3_bus.svg │ ├── pin_def_cores3_porta.svg │ ├── pin_def_cores3_portb.svg │ ├── pin_def_cores3_portc.svg │ ├── pin_def_paper_porta.svg │ ├── pin_def_paper_portb.svg │ ├── pin_def_paper_portc.svg │ ├── pin_def_stampc3_bus.svg │ ├── pin_def_stampc3u_bus.svg │ ├── pin_def_stamppico_bus.svg │ ├── pin_def_station_porta.svg │ ├── pin_def_station_portb1.svg │ ├── pin_def_station_portb2.svg │ ├── pin_def_station_portc1.svg │ ├── pin_def_station_portc2.svg │ ├── pin_def_stickc_hat.svg │ ├── pin_def_stickc_porta.svg │ └── pin_def_stickcplus_hat.svg ├── examples ├── Advanced │ ├── Bluetooth_with_ESP32A2DP │ │ └── Bluetooth_with_ESP32A2DP.ino │ ├── MP3_with_ESP8266Audio │ │ └── MP3_with_ESP8266Audio.ino │ ├── Mic_FFT │ │ └── Mic_FFT.ino │ ├── Speak_with_AquesTalk │ │ └── Speak_with_AquesTalk.ino │ ├── Speaker_SD_wav_file │ │ └── Speaker_SD_wav_file.ino │ └── WebRadio_with_ESP8266Audio │ │ └── WebRadio_with_ESP8266Audio.ino ├── Basic │ ├── Axp2101 │ │ └── IRQ │ │ │ └── IRQExample │ │ │ └── IRQExample.ino │ ├── Button │ │ └── Button.ino │ ├── Displays │ │ └── Displays.ino │ ├── HowToUse │ │ └── HowToUse.ino │ ├── Imu │ │ └── Imu.ino │ ├── LogOutput │ │ └── LogOutput.ino │ ├── Microphone │ │ └── Microphone.ino │ ├── Rtc │ │ └── Rtc.ino │ ├── Speaker │ │ └── Speaker.ino │ └── Touch │ │ ├── DragDrop │ │ └── DragDrop.ino │ │ └── SliderUI │ │ └── SliderUI.ino └── PlatformIO_SDL │ ├── README.md │ ├── platformio.ini │ └── src │ ├── sdl_main.cpp │ └── user_code.cpp ├── library.json ├── library.properties └── src ├── M5Unified.cpp ├── M5Unified.h ├── M5Unified.hpp ├── gitTagVersion.h └── utility ├── Button_Class.cpp ├── Button_Class.hpp ├── I2C_Class.cpp ├── I2C_Class.hpp ├── IMU_Class.cpp ├── IMU_Class.hpp ├── IOExpander_Base.hpp ├── LED_Class.cpp ├── LED_Class.hpp ├── Log_Class.cpp ├── Log_Class.hpp ├── M5Timer.cpp ├── M5Timer.h ├── Mic_Class.cpp ├── Mic_Class.hpp ├── PI4IOE5V6408_Class.cpp ├── PI4IOE5V6408_Class.hpp ├── Power_Class.cpp ├── Power_Class.hpp ├── RTC_Class.cpp ├── RTC_Class.hpp ├── Speaker_Class.cpp ├── Speaker_Class.hpp ├── Touch_Class.cpp ├── Touch_Class.hpp ├── imu ├── AK8963_Class.cpp ├── AK8963_Class.hpp ├── BMI270_Class.cpp ├── BMI270_Class.hpp ├── BMI270_config.inl ├── BMM150_Class.cpp ├── BMM150_Class.hpp ├── IMU_Base.cpp ├── IMU_Base.hpp ├── MPU6886_Class.cpp ├── MPU6886_Class.hpp ├── SH200Q_Class.cpp └── SH200Q_Class.hpp ├── led ├── LED_Base.hpp ├── LED_PowerHub_Class.cpp ├── LED_PowerHub_Class.hpp ├── LED_Strip_Class.cpp └── LED_Strip_Class.hpp ├── m5unified_common.h ├── power ├── AW32001_Class.cpp ├── AW32001_Class.hpp ├── AXP192_Class.cpp ├── AXP192_Class.hpp ├── AXP2101_Class.cpp ├── AXP2101_Class.hpp ├── BQ27220_Class.cpp ├── BQ27220_Class.hpp ├── INA226_Class.cpp ├── INA226_Class.hpp ├── INA3221_Class.cpp ├── INA3221_Class.hpp ├── IP5306_Class.cpp └── IP5306_Class.hpp └── rtc ├── PCF8563_Class.cpp ├── PCF8563_Class.hpp ├── RTC_Base.cpp ├── RTC_Base.hpp ├── RTC_PowerHub_Class.cpp ├── RTC_PowerHub_Class.hpp ├── RX8130_Class.cpp └── RX8130_Class.hpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/README.md -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/component.mk -------------------------------------------------------------------------------- /docs/img/pin_def_atom_echo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_echo.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_lite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_lite.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_matrix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_matrix.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_psram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_psram.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_s3.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_s3_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_s3_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_atom_u.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_atom_u.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core2_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core2_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core2_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core2_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core2_portb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core2_portb.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core2_portc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core2_portc.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core2_portd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core2_portd.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core2_porte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core2_porte.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core_portb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core_portb.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core_portc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core_portc.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core_portd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core_portd.svg -------------------------------------------------------------------------------- /docs/img/pin_def_core_porte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_core_porte.svg -------------------------------------------------------------------------------- /docs/img/pin_def_coreink_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_coreink_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_coreink_hat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_coreink_hat.svg -------------------------------------------------------------------------------- /docs/img/pin_def_cores3_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_cores3_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_cores3_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_cores3_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_cores3_portb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_cores3_portb.svg -------------------------------------------------------------------------------- /docs/img/pin_def_cores3_portc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_cores3_portc.svg -------------------------------------------------------------------------------- /docs/img/pin_def_paper_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_paper_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_paper_portb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_paper_portb.svg -------------------------------------------------------------------------------- /docs/img/pin_def_paper_portc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_paper_portc.svg -------------------------------------------------------------------------------- /docs/img/pin_def_stampc3_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_stampc3_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_stampc3u_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_stampc3u_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_stamppico_bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_stamppico_bus.svg -------------------------------------------------------------------------------- /docs/img/pin_def_station_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_station_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_station_portb1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_station_portb1.svg -------------------------------------------------------------------------------- /docs/img/pin_def_station_portb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_station_portb2.svg -------------------------------------------------------------------------------- /docs/img/pin_def_station_portc1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_station_portc1.svg -------------------------------------------------------------------------------- /docs/img/pin_def_station_portc2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_station_portc2.svg -------------------------------------------------------------------------------- /docs/img/pin_def_stickc_hat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_stickc_hat.svg -------------------------------------------------------------------------------- /docs/img/pin_def_stickc_porta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_stickc_porta.svg -------------------------------------------------------------------------------- /docs/img/pin_def_stickcplus_hat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/docs/img/pin_def_stickcplus_hat.svg -------------------------------------------------------------------------------- /examples/Advanced/Bluetooth_with_ESP32A2DP/Bluetooth_with_ESP32A2DP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Advanced/Bluetooth_with_ESP32A2DP/Bluetooth_with_ESP32A2DP.ino -------------------------------------------------------------------------------- /examples/Advanced/MP3_with_ESP8266Audio/MP3_with_ESP8266Audio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Advanced/MP3_with_ESP8266Audio/MP3_with_ESP8266Audio.ino -------------------------------------------------------------------------------- /examples/Advanced/Mic_FFT/Mic_FFT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Advanced/Mic_FFT/Mic_FFT.ino -------------------------------------------------------------------------------- /examples/Advanced/Speak_with_AquesTalk/Speak_with_AquesTalk.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Advanced/Speak_with_AquesTalk/Speak_with_AquesTalk.ino -------------------------------------------------------------------------------- /examples/Advanced/Speaker_SD_wav_file/Speaker_SD_wav_file.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Advanced/Speaker_SD_wav_file/Speaker_SD_wav_file.ino -------------------------------------------------------------------------------- /examples/Advanced/WebRadio_with_ESP8266Audio/WebRadio_with_ESP8266Audio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Advanced/WebRadio_with_ESP8266Audio/WebRadio_with_ESP8266Audio.ino -------------------------------------------------------------------------------- /examples/Basic/Axp2101/IRQ/IRQExample/IRQExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Axp2101/IRQ/IRQExample/IRQExample.ino -------------------------------------------------------------------------------- /examples/Basic/Button/Button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Button/Button.ino -------------------------------------------------------------------------------- /examples/Basic/Displays/Displays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Displays/Displays.ino -------------------------------------------------------------------------------- /examples/Basic/HowToUse/HowToUse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/HowToUse/HowToUse.ino -------------------------------------------------------------------------------- /examples/Basic/Imu/Imu.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Imu/Imu.ino -------------------------------------------------------------------------------- /examples/Basic/LogOutput/LogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/LogOutput/LogOutput.ino -------------------------------------------------------------------------------- /examples/Basic/Microphone/Microphone.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Microphone/Microphone.ino -------------------------------------------------------------------------------- /examples/Basic/Rtc/Rtc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Rtc/Rtc.ino -------------------------------------------------------------------------------- /examples/Basic/Speaker/Speaker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Speaker/Speaker.ino -------------------------------------------------------------------------------- /examples/Basic/Touch/DragDrop/DragDrop.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Touch/DragDrop/DragDrop.ino -------------------------------------------------------------------------------- /examples/Basic/Touch/SliderUI/SliderUI.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/Basic/Touch/SliderUI/SliderUI.ino -------------------------------------------------------------------------------- /examples/PlatformIO_SDL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/PlatformIO_SDL/README.md -------------------------------------------------------------------------------- /examples/PlatformIO_SDL/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/PlatformIO_SDL/platformio.ini -------------------------------------------------------------------------------- /examples/PlatformIO_SDL/src/sdl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/PlatformIO_SDL/src/sdl_main.cpp -------------------------------------------------------------------------------- /examples/PlatformIO_SDL/src/user_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/examples/PlatformIO_SDL/src/user_code.cpp -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/library.properties -------------------------------------------------------------------------------- /src/M5Unified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/M5Unified.cpp -------------------------------------------------------------------------------- /src/M5Unified.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/M5Unified.h -------------------------------------------------------------------------------- /src/M5Unified.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/M5Unified.hpp -------------------------------------------------------------------------------- /src/gitTagVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/gitTagVersion.h -------------------------------------------------------------------------------- /src/utility/Button_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Button_Class.cpp -------------------------------------------------------------------------------- /src/utility/Button_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Button_Class.hpp -------------------------------------------------------------------------------- /src/utility/I2C_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/I2C_Class.cpp -------------------------------------------------------------------------------- /src/utility/I2C_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/I2C_Class.hpp -------------------------------------------------------------------------------- /src/utility/IMU_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/IMU_Class.cpp -------------------------------------------------------------------------------- /src/utility/IMU_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/IMU_Class.hpp -------------------------------------------------------------------------------- /src/utility/IOExpander_Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/IOExpander_Base.hpp -------------------------------------------------------------------------------- /src/utility/LED_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/LED_Class.cpp -------------------------------------------------------------------------------- /src/utility/LED_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/LED_Class.hpp -------------------------------------------------------------------------------- /src/utility/Log_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Log_Class.cpp -------------------------------------------------------------------------------- /src/utility/Log_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Log_Class.hpp -------------------------------------------------------------------------------- /src/utility/M5Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/M5Timer.cpp -------------------------------------------------------------------------------- /src/utility/M5Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/M5Timer.h -------------------------------------------------------------------------------- /src/utility/Mic_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Mic_Class.cpp -------------------------------------------------------------------------------- /src/utility/Mic_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Mic_Class.hpp -------------------------------------------------------------------------------- /src/utility/PI4IOE5V6408_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/PI4IOE5V6408_Class.cpp -------------------------------------------------------------------------------- /src/utility/PI4IOE5V6408_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/PI4IOE5V6408_Class.hpp -------------------------------------------------------------------------------- /src/utility/Power_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Power_Class.cpp -------------------------------------------------------------------------------- /src/utility/Power_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Power_Class.hpp -------------------------------------------------------------------------------- /src/utility/RTC_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/RTC_Class.cpp -------------------------------------------------------------------------------- /src/utility/RTC_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/RTC_Class.hpp -------------------------------------------------------------------------------- /src/utility/Speaker_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Speaker_Class.cpp -------------------------------------------------------------------------------- /src/utility/Speaker_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Speaker_Class.hpp -------------------------------------------------------------------------------- /src/utility/Touch_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Touch_Class.cpp -------------------------------------------------------------------------------- /src/utility/Touch_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/Touch_Class.hpp -------------------------------------------------------------------------------- /src/utility/imu/AK8963_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/AK8963_Class.cpp -------------------------------------------------------------------------------- /src/utility/imu/AK8963_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/AK8963_Class.hpp -------------------------------------------------------------------------------- /src/utility/imu/BMI270_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/BMI270_Class.cpp -------------------------------------------------------------------------------- /src/utility/imu/BMI270_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/BMI270_Class.hpp -------------------------------------------------------------------------------- /src/utility/imu/BMI270_config.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/BMI270_config.inl -------------------------------------------------------------------------------- /src/utility/imu/BMM150_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/BMM150_Class.cpp -------------------------------------------------------------------------------- /src/utility/imu/BMM150_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/BMM150_Class.hpp -------------------------------------------------------------------------------- /src/utility/imu/IMU_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/IMU_Base.cpp -------------------------------------------------------------------------------- /src/utility/imu/IMU_Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/IMU_Base.hpp -------------------------------------------------------------------------------- /src/utility/imu/MPU6886_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/MPU6886_Class.cpp -------------------------------------------------------------------------------- /src/utility/imu/MPU6886_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/MPU6886_Class.hpp -------------------------------------------------------------------------------- /src/utility/imu/SH200Q_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/SH200Q_Class.cpp -------------------------------------------------------------------------------- /src/utility/imu/SH200Q_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/imu/SH200Q_Class.hpp -------------------------------------------------------------------------------- /src/utility/led/LED_Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/led/LED_Base.hpp -------------------------------------------------------------------------------- /src/utility/led/LED_PowerHub_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/led/LED_PowerHub_Class.cpp -------------------------------------------------------------------------------- /src/utility/led/LED_PowerHub_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/led/LED_PowerHub_Class.hpp -------------------------------------------------------------------------------- /src/utility/led/LED_Strip_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/led/LED_Strip_Class.cpp -------------------------------------------------------------------------------- /src/utility/led/LED_Strip_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/led/LED_Strip_Class.hpp -------------------------------------------------------------------------------- /src/utility/m5unified_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/m5unified_common.h -------------------------------------------------------------------------------- /src/utility/power/AW32001_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/AW32001_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/AW32001_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/AW32001_Class.hpp -------------------------------------------------------------------------------- /src/utility/power/AXP192_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/AXP192_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/AXP192_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/AXP192_Class.hpp -------------------------------------------------------------------------------- /src/utility/power/AXP2101_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/AXP2101_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/AXP2101_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/AXP2101_Class.hpp -------------------------------------------------------------------------------- /src/utility/power/BQ27220_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/BQ27220_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/BQ27220_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/BQ27220_Class.hpp -------------------------------------------------------------------------------- /src/utility/power/INA226_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/INA226_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/INA226_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/INA226_Class.hpp -------------------------------------------------------------------------------- /src/utility/power/INA3221_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/INA3221_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/INA3221_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/INA3221_Class.hpp -------------------------------------------------------------------------------- /src/utility/power/IP5306_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/IP5306_Class.cpp -------------------------------------------------------------------------------- /src/utility/power/IP5306_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/power/IP5306_Class.hpp -------------------------------------------------------------------------------- /src/utility/rtc/PCF8563_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/PCF8563_Class.cpp -------------------------------------------------------------------------------- /src/utility/rtc/PCF8563_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/PCF8563_Class.hpp -------------------------------------------------------------------------------- /src/utility/rtc/RTC_Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/RTC_Base.cpp -------------------------------------------------------------------------------- /src/utility/rtc/RTC_Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/RTC_Base.hpp -------------------------------------------------------------------------------- /src/utility/rtc/RTC_PowerHub_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/RTC_PowerHub_Class.cpp -------------------------------------------------------------------------------- /src/utility/rtc/RTC_PowerHub_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/RTC_PowerHub_Class.hpp -------------------------------------------------------------------------------- /src/utility/rtc/RX8130_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/RX8130_Class.cpp -------------------------------------------------------------------------------- /src/utility/rtc/RX8130_Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m5stack/M5Unified/HEAD/src/utility/rtc/RX8130_Class.hpp --------------------------------------------------------------------------------