├── Libraries ├── CMSIS │ ├── CM3 │ │ ├── CoreSupport │ │ │ ├── core_cm3.c │ │ │ └── core_cm3.h │ │ └── DeviceSupport │ │ │ └── ST │ │ │ └── STM32F10x │ │ │ ├── Release_Notes.html │ │ │ ├── startup │ │ │ ├── TrueSTUDIO │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ ├── arm │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ ├── gcc_ride7 │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ └── iar │ │ │ │ ├── startup_stm32f10x_cl.s │ │ │ │ ├── startup_stm32f10x_hd.s │ │ │ │ ├── startup_stm32f10x_hd_vl.s │ │ │ │ ├── startup_stm32f10x_ld.s │ │ │ │ ├── startup_stm32f10x_ld_vl.s │ │ │ │ ├── startup_stm32f10x_md.s │ │ │ │ ├── startup_stm32f10x_md_vl.s │ │ │ │ └── startup_stm32f10x_xl.s │ │ │ ├── stm32f10x.h │ │ │ ├── system_stm32f10x.c │ │ │ └── system_stm32f10x.h │ ├── CMSIS debug support.htm │ ├── CMSIS_changes.htm │ ├── Documentation │ │ └── CMSIS_Core.htm │ └── License.doc └── STM32F10x_StdPeriph_Driver │ ├── Release_Notes.html │ ├── inc │ ├── misc.h │ ├── stm32f10x_adc.h │ ├── stm32f10x_bkp.h │ ├── stm32f10x_can.h │ ├── stm32f10x_cec.h │ ├── stm32f10x_crc.h │ ├── stm32f10x_dac.h │ ├── stm32f10x_dbgmcu.h │ ├── stm32f10x_dma.h │ ├── stm32f10x_exti.h │ ├── stm32f10x_flash.h │ ├── stm32f10x_fsmc.h │ ├── stm32f10x_gpio.h │ ├── stm32f10x_i2c.h │ ├── stm32f10x_iwdg.h │ ├── stm32f10x_pwr.h │ ├── stm32f10x_rcc.h │ ├── stm32f10x_rtc.h │ ├── stm32f10x_sdio.h │ ├── stm32f10x_spi.h │ ├── stm32f10x_tim.h │ ├── stm32f10x_usart.h │ └── stm32f10x_wwdg.h │ └── src │ ├── misc.c │ ├── stm32f10x_adc.c │ ├── stm32f10x_bkp.c │ ├── stm32f10x_can.c │ ├── stm32f10x_cec.c │ ├── stm32f10x_crc.c │ ├── stm32f10x_dac.c │ ├── stm32f10x_dbgmcu.c │ ├── stm32f10x_dma.c │ ├── stm32f10x_exti.c │ ├── stm32f10x_flash.c │ ├── stm32f10x_fsmc.c │ ├── stm32f10x_gpio.c │ ├── stm32f10x_i2c.c │ ├── stm32f10x_iwdg.c │ ├── stm32f10x_pwr.c │ ├── stm32f10x_rcc.c │ ├── stm32f10x_rtc.c │ ├── stm32f10x_sdio.c │ ├── stm32f10x_spi.c │ ├── stm32f10x_tim.c │ ├── stm32f10x_usart.c │ └── stm32f10x_wwdg.c ├── ReadMe.md ├── doc ├── DHT12_data_sheet.pdf ├── TY_S1_spec.md ├── WIFI_DB_PCB.pdf ├── WifiDevelopBoard_SchematicV1_2.pdf ├── YW-1051_data_sheet.pdf ├── app_add_wifidevelopboard.md ├── image │ ├── WiFi_MCU_solution.png │ ├── board_ad_2018.png │ ├── board_ty_s1.png │ └── qr_ty.png ├── linkage_sence_air-quality-detector_switch.md ├── linkage_sence_dht12_alarm.md ├── one_key_scene.md ├── smart_air_quality_detector_demo.md ├── smart_alarm_demo.md ├── smart_color_lamp_demo.md ├── smart_dht12_sensor_demo.md ├── smart_scene_panel_demo.md ├── smart_switch_demo.md ├── smart_three_state_switch_demo.md ├── timing_scene.md └── warning.md ├── examples ├── smart_air_quality_detector_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── get_pm25.c │ ├── get_pm25.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── gpio_light.c │ ├── gpio_light.h │ ├── include.h │ └── main.c ├── smart_alarm_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── gpio_rgb.c │ ├── gpio_rgb.h │ ├── include.h │ └── main.c ├── smart_color_lamp_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── gpio_rgb.c │ ├── gpio_rgb.h │ ├── include.h │ └── main.c ├── smart_dht12_sensor_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── delay.c │ ├── delay.h │ ├── dht12.c │ ├── dht12.h │ ├── gpio_I2C.c │ ├── gpio_I2C.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── include.h │ └── main.c ├── smart_scene_panel_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── gpio_light.c │ ├── gpio_light.h │ ├── include.h │ └── main.c ├── smart_switch_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── gpio_light.c │ ├── gpio_light.h │ ├── include.h │ └── main.c └── smart_three_state_switch_demo │ ├── data_handle.c │ ├── data_handle.h │ ├── gpio_key.c │ ├── gpio_key.h │ ├── gpio_light.c │ ├── gpio_light.h │ ├── include.h │ └── main.c ├── project ├── smart_air_quality_detector_demo │ ├── Demo_Pm25.dep │ ├── Demo_Pm25.ewd │ ├── Demo_Pm25.ewp │ ├── Demo_Pm25.ewt │ ├── Demo_pm2_5.eww │ └── settings │ │ ├── Demo_Pm25.Debug.cspy.bat │ │ ├── Demo_Pm25.Debug.driver.xcl │ │ ├── Demo_Pm25.Debug.general.xcl │ │ ├── Demo_Pm25.crun │ │ ├── Demo_Pm25.dbgdt │ │ ├── Demo_Pm25.dni │ │ ├── Demo_pm2_5.wsdt │ │ └── Demo_pm2_5.wspos ├── smart_alarm_demo │ ├── Demo_alarm.eww │ ├── demo_alarm.dep │ ├── demo_alarm.ewd │ ├── demo_alarm.ewp │ ├── demo_alarm.ewt │ └── settings │ │ ├── Demo_alarm.wsdt │ │ ├── Demo_alarm.wspos │ │ ├── demo_alarm.Debug.cspy.bat │ │ ├── demo_alarm.Debug.driver.xcl │ │ ├── demo_alarm.Debug.general.xcl │ │ ├── demo_alarm.crun │ │ ├── demo_alarm.dbgdt │ │ └── demo_alarm.dni ├── smart_color_lamp_demo │ ├── gpio_key_rgb.dep │ ├── gpio_key_rgb.ewd │ ├── gpio_key_rgb.ewp │ ├── gpio_key_rgb.ewt │ ├── gpio_rgb.eww │ └── settings │ │ ├── gpio_key_rgb.Debug.cspy.bat │ │ ├── gpio_key_rgb.Debug.driver.xcl │ │ ├── gpio_key_rgb.Debug.general.xcl │ │ ├── gpio_key_rgb.crun │ │ ├── gpio_key_rgb.dbgdt │ │ ├── gpio_key_rgb.dni │ │ ├── gpio_rgb.wsdt │ │ └── gpio_rgb.wspos ├── smart_dht12_sensor_demo │ ├── Demo_dht12_i2c.dep │ ├── Demo_dht12_i2c.ewd │ ├── Demo_dht12_i2c.ewp │ ├── Demo_dht12_i2c.ewt │ ├── demo_dht12_i2c.eww │ └── settings │ │ ├── Demo_dht12_i2c.Debug.cspy.bat │ │ ├── Demo_dht12_i2c.Debug.driver.xcl │ │ ├── Demo_dht12_i2c.Debug.general.xcl │ │ ├── Demo_dht12_i2c.crun │ │ ├── Demo_dht12_i2c.dbgdt │ │ ├── Demo_dht12_i2c.dni │ │ ├── Demo_pm2_5.Debug.cspy.bat │ │ ├── Demo_pm2_5.Debug.driver.xcl │ │ ├── Demo_pm2_5.Debug.general.xcl │ │ ├── Demo_pm2_5.crun │ │ ├── Demo_pm2_5.dbgdt │ │ ├── Demo_pm2_5.dni │ │ ├── demo_dht12_i2c.wsdt │ │ └── demo_dht12_i2c.wspos ├── smart_scene_panel_demo │ ├── Demo_situational_mode.dep │ ├── Demo_situational_mode.ewd │ ├── Demo_situational_mode.ewp │ ├── Demo_situational_mode.ewt │ ├── demo_situational_mode.eww │ └── settings │ │ ├── Demo_situational_mode.Debug.cspy.bat │ │ ├── Demo_situational_mode.Debug.driver.xcl │ │ ├── Demo_situational_mode.Debug.general.xcl │ │ ├── Demo_situational_mode.crun │ │ ├── Demo_situational_mode.dbgdt │ │ ├── Demo_situational_mode.dni │ │ ├── demo_situational_mode.wsdt │ │ └── demo_situational_mode.wspos ├── smart_switch_demo │ ├── GPIO_key_light.eww │ ├── gpio_key_light.dep │ ├── gpio_key_light.ewd │ ├── gpio_key_light.ewp │ ├── gpio_key_light.ewt │ ├── settings │ │ ├── GPIO_key_light.wsdt │ │ ├── GPIO_key_light.wspos │ │ ├── gpio_key_light.Debug.cspy.bat │ │ ├── gpio_key_light.Debug.driver.xcl │ │ ├── gpio_key_light.Debug.general.xcl │ │ ├── gpio_key_light.Release.cspy.bat │ │ ├── gpio_key_light.Release.driver.xcl │ │ ├── gpio_key_light.Release.general.xcl │ │ ├── gpio_key_light.crun │ │ ├── gpio_key_light.dbgdt │ │ ├── gpio_key_light.dni │ │ ├── gpio_key_rgb.Debug.cspy.bat │ │ ├── gpio_key_rgb.Debug.driver.xcl │ │ ├── gpio_key_rgb.Debug.general.xcl │ │ ├── gpio_key_rgb.crun │ │ └── gpio_key_rgb.dni │ ├── stm32f10x_flash.icf │ └── stm32f10x_ram.icf └── smart_three_state_switch_demo │ ├── Demo_light_value.dep │ ├── Demo_light_value.ewd │ ├── Demo_light_value.ewp │ ├── Demo_light_value.ewt │ ├── Demo_light_value.eww │ └── settings │ ├── Demo_light_value.Debug.cspy.bat │ ├── Demo_light_value.Debug.driver.xcl │ ├── Demo_light_value.Debug.general.xcl │ ├── Demo_light_value.crun │ ├── Demo_light_value.dbgdt │ ├── Demo_light_value.dni │ ├── Demo_light_value.wsdt │ └── Demo_light_value.wspos └── src ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── user_timer.c ├── user_timer.h ├── user_uart.c └── user_uart.h /Libraries/CMSIS/CM3/CoreSupport/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/CoreSupport/core_cm3.c -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/CoreSupport/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/CoreSupport/core_cm3.h -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/Release_Notes.html -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_hd_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_hd_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_ld.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_ld_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_ld_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_md_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_md_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_xl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/startup_stm32f10x_xl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_hd_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_hd_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_ld.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_ld_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_ld_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_md_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_md_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_xl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/arm/startup_stm32f10x_xl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_hd_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_hd_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_ld.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_ld_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_ld_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_md_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_md_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_xl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/startup_stm32f10x_xl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_cl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_hd_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_hd_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_ld.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_ld_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_ld_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_md_vl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_md_vl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_xl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/iar/startup_stm32f10x_xl.s -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/stm32f10x.h -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.c -------------------------------------------------------------------------------- /Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.h -------------------------------------------------------------------------------- /Libraries/CMSIS/CMSIS debug support.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CMSIS debug support.htm -------------------------------------------------------------------------------- /Libraries/CMSIS/CMSIS_changes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/CMSIS_changes.htm -------------------------------------------------------------------------------- /Libraries/CMSIS/Documentation/CMSIS_Core.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/Documentation/CMSIS_Core.htm -------------------------------------------------------------------------------- /Libraries/CMSIS/License.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/CMSIS/License.doc -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/Release_Notes.html -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/misc.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/ReadMe.md -------------------------------------------------------------------------------- /doc/DHT12_data_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/DHT12_data_sheet.pdf -------------------------------------------------------------------------------- /doc/TY_S1_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/TY_S1_spec.md -------------------------------------------------------------------------------- /doc/WIFI_DB_PCB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/WIFI_DB_PCB.pdf -------------------------------------------------------------------------------- /doc/WifiDevelopBoard_SchematicV1_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/WifiDevelopBoard_SchematicV1_2.pdf -------------------------------------------------------------------------------- /doc/YW-1051_data_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/YW-1051_data_sheet.pdf -------------------------------------------------------------------------------- /doc/app_add_wifidevelopboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/app_add_wifidevelopboard.md -------------------------------------------------------------------------------- /doc/image/WiFi_MCU_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/image/WiFi_MCU_solution.png -------------------------------------------------------------------------------- /doc/image/board_ad_2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/image/board_ad_2018.png -------------------------------------------------------------------------------- /doc/image/board_ty_s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/image/board_ty_s1.png -------------------------------------------------------------------------------- /doc/image/qr_ty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/image/qr_ty.png -------------------------------------------------------------------------------- /doc/linkage_sence_air-quality-detector_switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/linkage_sence_air-quality-detector_switch.md -------------------------------------------------------------------------------- /doc/linkage_sence_dht12_alarm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/linkage_sence_dht12_alarm.md -------------------------------------------------------------------------------- /doc/one_key_scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/one_key_scene.md -------------------------------------------------------------------------------- /doc/smart_air_quality_detector_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_air_quality_detector_demo.md -------------------------------------------------------------------------------- /doc/smart_alarm_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_alarm_demo.md -------------------------------------------------------------------------------- /doc/smart_color_lamp_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_color_lamp_demo.md -------------------------------------------------------------------------------- /doc/smart_dht12_sensor_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_dht12_sensor_demo.md -------------------------------------------------------------------------------- /doc/smart_scene_panel_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_scene_panel_demo.md -------------------------------------------------------------------------------- /doc/smart_switch_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_switch_demo.md -------------------------------------------------------------------------------- /doc/smart_three_state_switch_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/smart_three_state_switch_demo.md -------------------------------------------------------------------------------- /doc/timing_scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/timing_scene.md -------------------------------------------------------------------------------- /doc/warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/doc/warning.md -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/get_pm25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/get_pm25.c -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/get_pm25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/get_pm25.h -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/gpio_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/gpio_light.c -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/gpio_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/gpio_light.h -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/include.h -------------------------------------------------------------------------------- /examples/smart_air_quality_detector_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_air_quality_detector_demo/main.c -------------------------------------------------------------------------------- /examples/smart_alarm_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_alarm_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_alarm_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_alarm_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_alarm_demo/gpio_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/gpio_rgb.c -------------------------------------------------------------------------------- /examples/smart_alarm_demo/gpio_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/gpio_rgb.h -------------------------------------------------------------------------------- /examples/smart_alarm_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/include.h -------------------------------------------------------------------------------- /examples/smart_alarm_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_alarm_demo/main.c -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/gpio_rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/gpio_rgb.c -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/gpio_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/gpio_rgb.h -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/include.h -------------------------------------------------------------------------------- /examples/smart_color_lamp_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_color_lamp_demo/main.c -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/delay.c -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/delay.h -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/dht12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/dht12.c -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/dht12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/dht12.h -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/gpio_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/gpio_I2C.c -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/gpio_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/gpio_I2C.h -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/include.h -------------------------------------------------------------------------------- /examples/smart_dht12_sensor_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_dht12_sensor_demo/main.c -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/gpio_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/gpio_light.c -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/gpio_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/gpio_light.h -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/include.h -------------------------------------------------------------------------------- /examples/smart_scene_panel_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_scene_panel_demo/main.c -------------------------------------------------------------------------------- /examples/smart_switch_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_switch_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_switch_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_switch_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_switch_demo/gpio_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/gpio_light.c -------------------------------------------------------------------------------- /examples/smart_switch_demo/gpio_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/gpio_light.h -------------------------------------------------------------------------------- /examples/smart_switch_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/include.h -------------------------------------------------------------------------------- /examples/smart_switch_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_switch_demo/main.c -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/data_handle.c -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/data_handle.h -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/gpio_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/gpio_key.c -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/gpio_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/gpio_key.h -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/gpio_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/gpio_light.c -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/gpio_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/gpio_light.h -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/include.h -------------------------------------------------------------------------------- /examples/smart_three_state_switch_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/examples/smart_three_state_switch_demo/main.c -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/Demo_Pm25.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/Demo_Pm25.dep -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/Demo_Pm25.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/Demo_Pm25.ewd -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/Demo_Pm25.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/Demo_Pm25.ewp -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/Demo_Pm25.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/Demo_Pm25.ewt -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/Demo_pm2_5.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/Demo_pm2_5.eww -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_Pm25.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_Pm25.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_Pm25.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_Pm25.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_Pm25.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_Pm25.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_Pm25.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_Pm25.crun -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_Pm25.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_Pm25.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_Pm25.dni -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_pm2_5.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_pm2_5.wsdt -------------------------------------------------------------------------------- /project/smart_air_quality_detector_demo/settings/Demo_pm2_5.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_air_quality_detector_demo/settings/Demo_pm2_5.wspos -------------------------------------------------------------------------------- /project/smart_alarm_demo/Demo_alarm.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/Demo_alarm.eww -------------------------------------------------------------------------------- /project/smart_alarm_demo/demo_alarm.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/demo_alarm.dep -------------------------------------------------------------------------------- /project/smart_alarm_demo/demo_alarm.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/demo_alarm.ewd -------------------------------------------------------------------------------- /project/smart_alarm_demo/demo_alarm.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/demo_alarm.ewp -------------------------------------------------------------------------------- /project/smart_alarm_demo/demo_alarm.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/demo_alarm.ewt -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/Demo_alarm.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/Demo_alarm.wsdt -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/Demo_alarm.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/Demo_alarm.wspos -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/demo_alarm.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/demo_alarm.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/demo_alarm.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/demo_alarm.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/demo_alarm.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/demo_alarm.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/demo_alarm.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/demo_alarm.crun -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/demo_alarm.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_alarm_demo/settings/demo_alarm.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_alarm_demo/settings/demo_alarm.dni -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/gpio_key_rgb.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/gpio_key_rgb.dep -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/gpio_key_rgb.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/gpio_key_rgb.ewd -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/gpio_key_rgb.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/gpio_key_rgb.ewp -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/gpio_key_rgb.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/gpio_key_rgb.ewt -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/gpio_rgb.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/gpio_rgb.eww -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_key_rgb.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_key_rgb.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_key_rgb.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_key_rgb.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_key_rgb.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_key_rgb.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_key_rgb.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_key_rgb.crun -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_key_rgb.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_key_rgb.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_key_rgb.dni -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_rgb.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_rgb.wsdt -------------------------------------------------------------------------------- /project/smart_color_lamp_demo/settings/gpio_rgb.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_color_lamp_demo/settings/gpio_rgb.wspos -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/Demo_dht12_i2c.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/Demo_dht12_i2c.dep -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/Demo_dht12_i2c.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/Demo_dht12_i2c.ewd -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/Demo_dht12_i2c.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/Demo_dht12_i2c.ewp -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/Demo_dht12_i2c.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/Demo_dht12_i2c.ewt -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/demo_dht12_i2c.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/demo_dht12_i2c.eww -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.crun -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_dht12_i2c.dni -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_pm2_5.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_pm2_5.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_pm2_5.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_pm2_5.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_pm2_5.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_pm2_5.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_pm2_5.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_pm2_5.crun -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_pm2_5.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/Demo_pm2_5.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/Demo_pm2_5.dni -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/demo_dht12_i2c.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/demo_dht12_i2c.wsdt -------------------------------------------------------------------------------- /project/smart_dht12_sensor_demo/settings/demo_dht12_i2c.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_dht12_sensor_demo/settings/demo_dht12_i2c.wspos -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/Demo_situational_mode.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/Demo_situational_mode.dep -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/Demo_situational_mode.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/Demo_situational_mode.ewd -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/Demo_situational_mode.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/Demo_situational_mode.ewp -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/Demo_situational_mode.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/Demo_situational_mode.ewt -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/demo_situational_mode.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/demo_situational_mode.eww -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/Demo_situational_mode.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/Demo_situational_mode.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/Demo_situational_mode.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/Demo_situational_mode.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/Demo_situational_mode.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/Demo_situational_mode.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/Demo_situational_mode.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/Demo_situational_mode.crun -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/Demo_situational_mode.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/Demo_situational_mode.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/Demo_situational_mode.dni -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/demo_situational_mode.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/demo_situational_mode.wsdt -------------------------------------------------------------------------------- /project/smart_scene_panel_demo/settings/demo_situational_mode.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_scene_panel_demo/settings/demo_situational_mode.wspos -------------------------------------------------------------------------------- /project/smart_switch_demo/GPIO_key_light.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/GPIO_key_light.eww -------------------------------------------------------------------------------- /project/smart_switch_demo/gpio_key_light.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/gpio_key_light.dep -------------------------------------------------------------------------------- /project/smart_switch_demo/gpio_key_light.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/gpio_key_light.ewd -------------------------------------------------------------------------------- /project/smart_switch_demo/gpio_key_light.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/gpio_key_light.ewp -------------------------------------------------------------------------------- /project/smart_switch_demo/gpio_key_light.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/gpio_key_light.ewt -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/GPIO_key_light.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/GPIO_key_light.wsdt -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/GPIO_key_light.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/GPIO_key_light.wspos -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.Release.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.Release.cspy.bat -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.Release.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.Release.driver.xcl -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.Release.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.Release.general.xcl -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.crun -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_light.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_light.dni -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_rgb.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_rgb.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_rgb.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_rgb.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_rgb.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_rgb.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_rgb.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_rgb.crun -------------------------------------------------------------------------------- /project/smart_switch_demo/settings/gpio_key_rgb.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/settings/gpio_key_rgb.dni -------------------------------------------------------------------------------- /project/smart_switch_demo/stm32f10x_flash.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/stm32f10x_flash.icf -------------------------------------------------------------------------------- /project/smart_switch_demo/stm32f10x_ram.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_switch_demo/stm32f10x_ram.icf -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/Demo_light_value.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/Demo_light_value.dep -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/Demo_light_value.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/Demo_light_value.ewd -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/Demo_light_value.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/Demo_light_value.ewp -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/Demo_light_value.ewt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/Demo_light_value.ewt -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/Demo_light_value.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/Demo_light_value.eww -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.Debug.cspy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.Debug.cspy.bat -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.Debug.driver.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.Debug.driver.xcl -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.Debug.general.xcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.Debug.general.xcl -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.crun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.crun -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.dbgdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.dni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.dni -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.wsdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.wsdt -------------------------------------------------------------------------------- /project/smart_three_state_switch_demo/settings/Demo_light_value.wspos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/project/smart_three_state_switch_demo/settings/Demo_light_value.wspos -------------------------------------------------------------------------------- /src/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/stm32f10x_conf.h -------------------------------------------------------------------------------- /src/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/stm32f10x_it.c -------------------------------------------------------------------------------- /src/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/stm32f10x_it.h -------------------------------------------------------------------------------- /src/user_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/user_timer.c -------------------------------------------------------------------------------- /src/user_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/user_timer.h -------------------------------------------------------------------------------- /src/user_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/user_uart.c -------------------------------------------------------------------------------- /src/user_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianyuankeji/open_wifi_mcu/HEAD/src/user_uart.h --------------------------------------------------------------------------------