├── LICENSE ├── README.md ├── README_zh-CN.md ├── demo_for_cardv ├── Makefile ├── demo_include │ ├── tuya_ipc_ap_demo.h │ ├── tuya_ipc_common_demo.h │ ├── tuya_ipc_doorbell_demo.h │ ├── tuya_ipc_dp_handler.h │ ├── tuya_ipc_dp_utils.h │ ├── tuya_ipc_media_demo.h │ ├── tuya_ipc_motion_detect_demo.h │ ├── tuya_ipc_sd_demo.h │ ├── tuya_ipc_system_control_demo.h │ └── tuya_ipc_wired_demo.h ├── demo_src │ ├── tuya_ipc_ap_demo.c │ ├── tuya_ipc_dp_handler.c │ ├── tuya_ipc_dp_utils.c │ ├── tuya_ipc_media_demo.c │ ├── tuya_ipc_motion_detect_demo.c │ ├── tuya_ipc_p2p_demo.c │ ├── tuya_ipc_sd_demo.c │ ├── tuya_ipc_system_control_demo.c │ ├── tuya_ipc_wired_demo.c │ └── user_main.c └── readme.txt ├── demo_for_fac ├── README.md ├── demo │ ├── Makefile │ ├── cJSON.c │ ├── cJSON.h │ ├── main.c │ ├── resource │ │ ├── speaker_test_8k.pcm │ │ └── tuya.h264 │ ├── tool │ │ ├── iperf-3.1-STABLE.zip │ │ ├── iperf-3.1.3-source.tar.gz │ │ ├── iperf3_pc.zip │ │ └── rtwpriv.tar.gz │ ├── tuya_fac_cmd_demo.c │ ├── tuya_fac_cmd_demo.h │ ├── tuya_fac_media_demo.c │ └── tuya_fac_media_demo.h └── sdk │ ├── include │ ├── tuya_fac_cmd.h │ ├── tuya_fac_media.h │ ├── tuya_fac_protocol.h │ └── tuya_fac_test.h │ └── src │ └── tuya_fac_test.c ├── demo_for_ipc ├── Makefile ├── demo_include │ ├── tuya_ipc_common_demo.h │ ├── tuya_ipc_doorbell_demo.h │ ├── tuya_ipc_dp_handler.h │ ├── tuya_ipc_dp_utils.h │ ├── tuya_ipc_media_demo.h │ ├── tuya_ipc_motion_detect_demo.h │ └── tuya_ipc_system_control_demo.h ├── demo_src │ ├── tuya_ipc_cloud_storage_demo.c │ ├── tuya_ipc_doorbell_demo.c │ ├── tuya_ipc_dp_handler.c │ ├── tuya_ipc_dp_utils.c │ ├── tuya_ipc_face_detect_demo.c │ ├── tuya_ipc_low_power_demo.c │ ├── tuya_ipc_media_demo.c │ ├── tuya_ipc_motion_detect_demo.c │ ├── tuya_ipc_p2p_demo.c │ ├── tuya_ipc_qrcode_demo.c │ ├── tuya_ipc_sd_demo.c │ ├── tuya_ipc_system_control_demo.c │ ├── tuya_ipc_wifi_demo.c │ ├── tuya_ipc_wired_demo.c │ └── user_main.c └── readme.txt ├── demo_for_ipc_5.x ├── Makefile ├── demo_include │ ├── tuya_ipc_cloud_storage_demo.h │ ├── tuya_ipc_common_demo.h │ ├── tuya_ipc_demo_default_cfg.h │ ├── tuya_ipc_doorbell_demo.h │ ├── tuya_ipc_dp_handler.h │ ├── tuya_ipc_dp_utils.h │ ├── tuya_ipc_log_demo.h │ ├── tuya_ipc_low_power_demo.h │ ├── tuya_ipc_media_demo.h │ ├── tuya_ipc_motion_detect_demo.h │ ├── tuya_ipc_p2p_demo.h │ ├── tuya_ipc_stream_storage_demo.h │ ├── tuya_ipc_system_control_demo.h │ └── tuya_ipc_upgrade_demo.h ├── demo_src │ ├── tuya_ipc_cloud_storage_demo.c │ ├── tuya_ipc_doorbell_demo.c │ ├── tuya_ipc_dp_handler.c │ ├── tuya_ipc_dp_utils.c │ ├── tuya_ipc_face_detect_demo.c │ ├── tuya_ipc_low_power_demo.c │ ├── tuya_ipc_media_demo.c │ ├── tuya_ipc_motion_detect_demo.c │ ├── tuya_ipc_p2p_demo.c │ ├── tuya_ipc_qrcode_demo.c │ ├── tuya_ipc_sdk_upgrade_demo.c │ ├── tuya_ipc_stream_storage_demo.c │ ├── tuya_ipc_system_control_demo.c │ ├── tuya_ipc_wifi_demo.c │ ├── tuya_ipc_wired_demo.c │ └── user_main.c └── readme.txt ├── demo_for_xvr_2.0.x ├── Makefile ├── demo_include │ ├── tuya_cmd_demo.h │ ├── tuya_hdd_file_operate_demo.h │ ├── tuya_hdd_proc_demo.h │ ├── tuya_ipc_common_demo.h │ ├── tuya_ipc_dp_handler.h │ ├── tuya_ipc_dp_utils.h │ ├── tuya_ipc_media_demo.h │ ├── tuya_ipc_motion_detect_demo.h │ ├── tuya_ipc_onvif_client_demo.h │ ├── tuya_ipc_system_control_demo.h │ ├── tuya_ipc_upgrade_demo.h │ └── tuya_xvr_dev_demo.h ├── demo_src │ ├── tuya_cmd_demo.c │ ├── tuya_hdd_file_operate_demo.c │ ├── tuya_hdd_proc_demo.c │ ├── tuya_ipc_cloud_storage_demo.c │ ├── tuya_ipc_dp_handler.c │ ├── tuya_ipc_dp_utils.c │ ├── tuya_ipc_media_demo.c │ ├── tuya_ipc_motion_detect_demo.c │ ├── tuya_ipc_onvif_client_demo.c │ ├── tuya_ipc_p2p_demo.c │ ├── tuya_ipc_qrcode_demo.c │ ├── tuya_ipc_sd_demo.c │ ├── tuya_ipc_system_control_demo.c │ ├── tuya_ipc_upgrade_demo.c │ ├── tuya_ipc_wifi_demo.c │ ├── tuya_ipc_wired_demo.c │ ├── tuya_xvr_dev_demo.c │ └── user_main.c └── readme.txt ├── demo_for_xvr_2.1.x ├── Makefile ├── demo_include │ ├── tuya_cmd_demo.h │ ├── tuya_hdd_file_operate_demo.h │ ├── tuya_hdd_proc_demo.h │ ├── tuya_ipc_common_demo.h │ ├── tuya_ipc_dp_handler.h │ ├── tuya_ipc_dp_utils.h │ ├── tuya_ipc_media_demo.h │ ├── tuya_ipc_motion_detect_demo.h │ ├── tuya_ipc_onvif_client_demo.h │ ├── tuya_ipc_system_control_demo.h │ ├── tuya_ipc_upgrade_demo.h │ └── tuya_xvr_dev_demo.h ├── demo_src │ ├── tuya_cmd_demo.c │ ├── tuya_hdd_file_operate_demo.c │ ├── tuya_hdd_proc_demo.c │ ├── tuya_ipc_cloud_storage_demo.c │ ├── tuya_ipc_dp_handler.c │ ├── tuya_ipc_dp_utils.c │ ├── tuya_ipc_media_demo.c │ ├── tuya_ipc_motion_detect_demo.c │ ├── tuya_ipc_onvif_client_demo.c │ ├── tuya_ipc_p2p_demo.c │ ├── tuya_ipc_qrcode_demo.c │ ├── tuya_ipc_sd_demo.c │ ├── tuya_ipc_system_control_demo.c │ ├── tuya_ipc_upgrade_demo.c │ ├── tuya_ipc_wifi_demo.c │ ├── tuya_ipc_wired_demo.c │ ├── tuya_xvr_dev_demo.c │ └── user_main.c └── readme.txt └── demo_resource ├── ipc_emergency_record ├── 1592895001_ch1.jpg ├── 1592895078_ch1.jpg ├── 1594865216_ch2.jpg ├── 1594865348_ch2.jpg ├── 1595308774_89_ch1.jpg ├── 1601278626_58_ch2.mp4 └── thumbnail │ ├── mp4_thumbnail.jpg │ └── pic_thumbnail.jpg ├── media ├── demo_audio.raw ├── demo_face_snapshot.jpg ├── demo_scence_snapshot.jpg ├── demo_signed_face.jpg ├── demo_signed_scence.jpg ├── demo_snapshot.jpg └── demo_video.264 └── tones ├── tone1.m4a └── tone2.m4a /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /demo_for_cardv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/Makefile -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_ap_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_ap_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_common_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_common_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_doorbell_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_doorbell_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_dp_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_dp_handler.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_dp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_dp_utils.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_media_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_media_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_motion_detect_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_motion_detect_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_sd_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_sd_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_system_control_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_system_control_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_include/tuya_ipc_wired_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_include/tuya_ipc_wired_demo.h -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_ap_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_ap_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_dp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_dp_handler.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_dp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_dp_utils.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_media_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_media_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_motion_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_motion_detect_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_p2p_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_p2p_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_sd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_sd_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_system_control_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_system_control_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/tuya_ipc_wired_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/tuya_ipc_wired_demo.c -------------------------------------------------------------------------------- /demo_for_cardv/demo_src/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/demo_src/user_main.c -------------------------------------------------------------------------------- /demo_for_cardv/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_cardv/readme.txt -------------------------------------------------------------------------------- /demo_for_fac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/README.md -------------------------------------------------------------------------------- /demo_for_fac/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/Makefile -------------------------------------------------------------------------------- /demo_for_fac/demo/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/cJSON.c -------------------------------------------------------------------------------- /demo_for_fac/demo/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/cJSON.h -------------------------------------------------------------------------------- /demo_for_fac/demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/main.c -------------------------------------------------------------------------------- /demo_for_fac/demo/resource/speaker_test_8k.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/resource/speaker_test_8k.pcm -------------------------------------------------------------------------------- /demo_for_fac/demo/resource/tuya.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/resource/tuya.h264 -------------------------------------------------------------------------------- /demo_for_fac/demo/tool/iperf-3.1-STABLE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tool/iperf-3.1-STABLE.zip -------------------------------------------------------------------------------- /demo_for_fac/demo/tool/iperf-3.1.3-source.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tool/iperf-3.1.3-source.tar.gz -------------------------------------------------------------------------------- /demo_for_fac/demo/tool/iperf3_pc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tool/iperf3_pc.zip -------------------------------------------------------------------------------- /demo_for_fac/demo/tool/rtwpriv.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tool/rtwpriv.tar.gz -------------------------------------------------------------------------------- /demo_for_fac/demo/tuya_fac_cmd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tuya_fac_cmd_demo.c -------------------------------------------------------------------------------- /demo_for_fac/demo/tuya_fac_cmd_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tuya_fac_cmd_demo.h -------------------------------------------------------------------------------- /demo_for_fac/demo/tuya_fac_media_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tuya_fac_media_demo.c -------------------------------------------------------------------------------- /demo_for_fac/demo/tuya_fac_media_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/demo/tuya_fac_media_demo.h -------------------------------------------------------------------------------- /demo_for_fac/sdk/include/tuya_fac_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/sdk/include/tuya_fac_cmd.h -------------------------------------------------------------------------------- /demo_for_fac/sdk/include/tuya_fac_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/sdk/include/tuya_fac_media.h -------------------------------------------------------------------------------- /demo_for_fac/sdk/include/tuya_fac_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/sdk/include/tuya_fac_protocol.h -------------------------------------------------------------------------------- /demo_for_fac/sdk/include/tuya_fac_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/sdk/include/tuya_fac_test.h -------------------------------------------------------------------------------- /demo_for_fac/sdk/src/tuya_fac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_fac/sdk/src/tuya_fac_test.c -------------------------------------------------------------------------------- /demo_for_ipc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/Makefile -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_common_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_common_demo.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_doorbell_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_doorbell_demo.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_dp_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_dp_handler.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_dp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_dp_utils.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_media_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_media_demo.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_motion_detect_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_motion_detect_demo.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_include/tuya_ipc_system_control_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_include/tuya_ipc_system_control_demo.h -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_cloud_storage_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_cloud_storage_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_doorbell_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_doorbell_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_dp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_dp_handler.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_dp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_dp_utils.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_face_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_face_detect_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_low_power_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_low_power_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_media_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_media_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_motion_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_motion_detect_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_p2p_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_p2p_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_qrcode_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_qrcode_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_sd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_sd_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_system_control_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_system_control_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_wifi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_wifi_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/tuya_ipc_wired_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/tuya_ipc_wired_demo.c -------------------------------------------------------------------------------- /demo_for_ipc/demo_src/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/demo_src/user_main.c -------------------------------------------------------------------------------- /demo_for_ipc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc/readme.txt -------------------------------------------------------------------------------- /demo_for_ipc_5.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/Makefile -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_cloud_storage_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_cloud_storage_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_common_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_common_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_demo_default_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_demo_default_cfg.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_doorbell_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_doorbell_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_dp_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_dp_handler.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_dp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_dp_utils.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_log_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_log_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_low_power_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_low_power_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_media_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_media_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_motion_detect_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_motion_detect_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_p2p_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_p2p_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_stream_storage_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_stream_storage_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_system_control_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_system_control_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_include/tuya_ipc_upgrade_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_include/tuya_ipc_upgrade_demo.h -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_cloud_storage_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_cloud_storage_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_doorbell_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_doorbell_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_dp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_dp_handler.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_dp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_dp_utils.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_face_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_face_detect_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_low_power_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_low_power_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_media_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_media_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_motion_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_motion_detect_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_p2p_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_p2p_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_qrcode_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_qrcode_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_sdk_upgrade_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_sdk_upgrade_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_stream_storage_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_stream_storage_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_system_control_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_system_control_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_wifi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_wifi_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/tuya_ipc_wired_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/tuya_ipc_wired_demo.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/demo_src/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/demo_src/user_main.c -------------------------------------------------------------------------------- /demo_for_ipc_5.x/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_ipc_5.x/readme.txt -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/Makefile -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_cmd_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_cmd_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_hdd_file_operate_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_hdd_file_operate_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_hdd_proc_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_hdd_proc_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_common_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_common_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_dp_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_dp_handler.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_dp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_dp_utils.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_media_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_media_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_motion_detect_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_motion_detect_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_onvif_client_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_onvif_client_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_system_control_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_system_control_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_ipc_upgrade_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_ipc_upgrade_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_include/tuya_xvr_dev_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_include/tuya_xvr_dev_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_cmd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_cmd_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_hdd_file_operate_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_hdd_file_operate_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_hdd_proc_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_hdd_proc_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_cloud_storage_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_cloud_storage_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_dp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_dp_handler.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_dp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_dp_utils.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_media_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_media_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_motion_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_motion_detect_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_onvif_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_onvif_client_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_p2p_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_p2p_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_qrcode_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_qrcode_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_sd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_sd_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_system_control_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_system_control_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_upgrade_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_upgrade_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_wifi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_wifi_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_ipc_wired_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_ipc_wired_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/tuya_xvr_dev_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/tuya_xvr_dev_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/demo_src/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/demo_src/user_main.c -------------------------------------------------------------------------------- /demo_for_xvr_2.0.x/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.0.x/readme.txt -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/Makefile -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_cmd_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_cmd_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_hdd_file_operate_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_hdd_file_operate_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_hdd_proc_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_hdd_proc_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_common_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_common_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_dp_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_dp_handler.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_dp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_dp_utils.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_media_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_media_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_motion_detect_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_motion_detect_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_onvif_client_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_onvif_client_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_system_control_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_system_control_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_ipc_upgrade_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_ipc_upgrade_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_include/tuya_xvr_dev_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_include/tuya_xvr_dev_demo.h -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_cmd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_cmd_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_hdd_file_operate_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_hdd_file_operate_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_hdd_proc_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_hdd_proc_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_cloud_storage_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_cloud_storage_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_dp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_dp_handler.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_dp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_dp_utils.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_media_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_media_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_motion_detect_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_motion_detect_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_onvif_client_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_onvif_client_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_p2p_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_p2p_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_qrcode_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_qrcode_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_sd_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_sd_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_system_control_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_system_control_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_upgrade_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_upgrade_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_wifi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_wifi_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_ipc_wired_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_ipc_wired_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/tuya_xvr_dev_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/tuya_xvr_dev_demo.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/demo_src/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/demo_src/user_main.c -------------------------------------------------------------------------------- /demo_for_xvr_2.1.x/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_for_xvr_2.1.x/readme.txt -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/1592895001_ch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/1592895001_ch1.jpg -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/1592895078_ch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/1592895078_ch1.jpg -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/1594865216_ch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/1594865216_ch2.jpg -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/1594865348_ch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/1594865348_ch2.jpg -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/1595308774_89_ch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/1595308774_89_ch1.jpg -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/1601278626_58_ch2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/1601278626_58_ch2.mp4 -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/thumbnail/mp4_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/thumbnail/mp4_thumbnail.jpg -------------------------------------------------------------------------------- /demo_resource/ipc_emergency_record/thumbnail/pic_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/ipc_emergency_record/thumbnail/pic_thumbnail.jpg -------------------------------------------------------------------------------- /demo_resource/media/demo_audio.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_audio.raw -------------------------------------------------------------------------------- /demo_resource/media/demo_face_snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_face_snapshot.jpg -------------------------------------------------------------------------------- /demo_resource/media/demo_scence_snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_scence_snapshot.jpg -------------------------------------------------------------------------------- /demo_resource/media/demo_signed_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_signed_face.jpg -------------------------------------------------------------------------------- /demo_resource/media/demo_signed_scence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_signed_scence.jpg -------------------------------------------------------------------------------- /demo_resource/media/demo_snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_snapshot.jpg -------------------------------------------------------------------------------- /demo_resource/media/demo_video.264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/media/demo_video.264 -------------------------------------------------------------------------------- /demo_resource/tones/tone1.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/tones/tone1.m4a -------------------------------------------------------------------------------- /demo_resource/tones/tone2.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya/tuya-iotos-embeded-multimedia-demo/HEAD/demo_resource/tones/tone2.m4a --------------------------------------------------------------------------------