├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── pull_request_template.md └── workflows │ ├── cla_assistant.yaml │ ├── pull_request_check.yml │ └── trufflehog_security_scan.yaml ├── .gitignore ├── CLA.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── custom_cpcd_LED_example ├── README.md ├── SimplicityStudio │ └── custom_cpcd_led_example.slcp ├── custom_cpc_host │ ├── Makefile │ ├── cpc_commands.h │ ├── cpcledbutton.c │ └── sl_cpc.h ├── image │ ├── bootloader.png │ ├── create_example.png │ └── create_rcp.png └── rcp │ ├── app.c │ ├── app.h │ ├── cpc_button_led.c │ ├── cpc_button_led.h │ ├── cpc_commands.h │ └── reset_util.h ├── deprecated ├── dmp_sed_light │ └── EFR32MG12 │ │ ├── README.md │ │ ├── SimplicityStudio │ │ └── dmp_sed_light_mg12.sls │ │ ├── doc │ │ ├── change_bootloader_configuration.png │ │ ├── change_bt_advertiser_interval_1.png │ │ ├── change_bt_advertiser_interval_2.png │ │ ├── change_bt_advertiser_interval_3.png │ │ ├── change_generation_directory.png │ │ ├── change_long_poll_interval.png │ │ ├── change_reporting_interval.png │ │ ├── change_ui_demo_code_set.png │ │ ├── comment_display_function_call.png │ │ ├── disable_display_driver.png │ │ ├── disable_glib.png │ │ ├── disable_rtos_polling.png │ │ ├── enable_flash_powerdown_plugin.png │ │ ├── test_result.png │ │ └── test_result_no_event.png │ │ ├── iar │ │ ├── dmp_sed_light_mg12.ewd │ │ ├── dmp_sed_light_mg12.ewp │ │ └── dmp_sed_light_mg12.eww │ │ └── src │ │ └── dmp_sed_light_mg12_callbacks.c ├── zigbee_door_lock_tutorial │ ├── Zigbee_6.x │ │ ├── Coordinator │ │ │ └── SimplicityStudio_v5 │ │ │ │ └── Coordinator.sls │ │ ├── Door_Lock │ │ │ ├── SimplicityStudio_v5 │ │ │ │ └── Door_Lock.sls │ │ │ └── src │ │ │ │ ├── Door_Lock_callbacks.c │ │ │ │ └── custom-token.h │ │ ├── Door_Lock_Controller │ │ │ ├── SimplicityStudio_v5 │ │ │ │ └── Door_Lock_Controller.sls │ │ │ └── src │ │ │ │ └── Door_Lock_Controller_callbacks.c │ │ ├── README.md │ │ ├── References │ │ │ ├── CRC.png │ │ │ ├── CustomAppToken.png │ │ │ ├── DebugAdapters.png │ │ │ ├── DoorLockController_Commands.PNG │ │ │ ├── DoorLock_Commands.png │ │ │ ├── DoorLock_attributes.png │ │ │ ├── EUI64.png │ │ │ ├── HADoorLock.png │ │ │ ├── HADoorLockController.png │ │ │ ├── InstallCodeScriptOutput.png │ │ │ ├── LinkKeys.png │ │ │ ├── LockCommandResponse.PNG │ │ │ ├── LockResponseFail.PNG │ │ │ ├── LockResponseSuccess.PNG │ │ │ ├── NewProjectWizard.png │ │ │ ├── ReadLockState.PNG │ │ │ ├── SetPin.PNG │ │ │ ├── SilabsZigbee.png │ │ │ ├── Soc.png │ │ │ ├── UnlockCommand.PNG │ │ │ └── ZigbeeMinimal.png │ │ └── program_install_code.bat │ └── Zigbee_7x │ │ ├── Image │ │ ├── Lock_controller_1.jpg │ │ ├── Lock_controller_2.jpg │ │ ├── Lock_controller_3.jpg │ │ ├── Lock_controller_4.jpg │ │ ├── Lock_controller_5.jpg │ │ ├── Lock_controller_56.jpg │ │ ├── Lock_controller_6.jpg │ │ ├── Lock_controller_67.jpg │ │ ├── Lock_controller_7.jpg │ │ ├── Lock_controller_8.jpg │ │ ├── Lock_controller_9.jpg │ │ ├── Lock_coordinator_1.jpg │ │ ├── Lock_coordinator_10.jpg │ │ ├── Lock_coordinator_11.jpg │ │ ├── Lock_coordinator_12.jpg │ │ ├── Lock_coordinator_13.jpg │ │ ├── Lock_coordinator_14.jpg │ │ ├── Lock_coordinator_15.jpg │ │ ├── Lock_coordinator_16.jpg │ │ ├── Lock_coordinator_17.jpg │ │ ├── Lock_coordinator_2.jpg │ │ ├── Lock_coordinator_3.jpg │ │ ├── Lock_coordinator_4.jpg │ │ ├── Lock_coordinator_5.jpg │ │ ├── Lock_coordinator_6.jpg │ │ ├── Lock_coordinator_7.jpg │ │ ├── Lock_coordinator_8.jpg │ │ ├── Lock_coordinator_9.jpg │ │ ├── Lock_device_1.jpg │ │ ├── Lock_device_10.jpg │ │ ├── Lock_device_11.jpg │ │ ├── Lock_device_12.jpg │ │ ├── Lock_device_18.jpg │ │ ├── Lock_device_19.jpg │ │ ├── Lock_device_2.jpg │ │ ├── Lock_device_3.jpg │ │ ├── Lock_device_4.jpg │ │ ├── Lock_device_5.jpg │ │ ├── Lock_device_6.jpg │ │ ├── Lock_device_7.jpg │ │ ├── Lock_device_8.jpg │ │ └── Lock_device_9.jpg │ │ ├── README.md │ │ └── src │ │ ├── Zigbee-Lock-UC.sls │ │ ├── Zigbee-LockController-UC.sls │ │ ├── Zigbee-LockCoordinator-UC.sls │ │ ├── app.c │ │ └── sl_custom_token_header.h ├── zigbee_green_power_gateway │ ├── README.md │ ├── SimplicityStudio │ │ ├── GP_Gateway_Host.sls │ │ └── GP_Gateway_NCP.sls │ ├── doc │ │ └── GreenPowerKbaSchematic.png │ └── src │ │ └── GP_Gateway_Host_callbacks.c ├── zigbee_large_network_testing │ ├── README.md │ ├── attachments │ │ ├── host_src │ │ │ ├── automated_test.c │ │ │ ├── automated_test.h │ │ │ ├── commands.c │ │ │ └── commands.h │ │ ├── large-network-diagnostics.xml │ │ └── router_src │ │ │ ├── custom_graphics.c │ │ │ ├── custom_graphics.h │ │ │ ├── gui.c │ │ │ ├── gui.h │ │ │ ├── queries.c │ │ │ └── queries.h │ └── figures │ │ └── gui.jpg ├── zigbee_network_testing_plugin │ ├── README.md │ ├── doc │ │ ├── cli.PNG │ │ └── network_testing_plugin.PNG │ └── src │ │ └── network-testing-cli │ │ ├── cli.xml │ │ ├── network-testing-cli.c │ │ ├── network-testing.c │ │ ├── network-testing.h │ │ └── plugin.properties ├── zigbee_optimize_bootup_rejoin │ ├── README.md │ ├── SimplicityStudio │ │ └── zigbee_minimal_soc_sleep_mg12.sls │ ├── doc │ │ ├── Bootup-Rejoin-Sniffer.isd │ │ ├── Bootup-Rejoin-Sniffer.png │ │ ├── Bootup-Rejoin.png │ │ ├── Change-Part.png │ │ ├── Make-A-Copy.png │ │ ├── Optimized-Bootup-Rejoin-Sniffer.isd │ │ ├── Optimized-Bootup-Rejoin-Sniffer.png │ │ └── Optimized-Bootup-Rejoin.png │ └── src │ │ ├── ZigbeeMinimalSoc4164ASleep_callbacks.c │ │ └── af-main-common.c ├── zigbee_sed_asynchronous_transmission │ ├── README.md │ ├── Z3Light_EndDevice │ │ ├── README.md │ │ ├── SimplicityStudio │ │ │ └── z3light_enddevice_mg12.sls │ │ └── src │ │ │ ├── Z3Light_EndDevice.isc │ │ │ └── Z3Light_EndDevice_callbacks.c │ ├── Z3Light_Router │ │ ├── README.md │ │ ├── SimplicityStudio │ │ │ └── z3light_router_mg12.sls │ │ └── src │ │ │ ├── Z3Light_Router.isc │ │ │ └── Z3Light_Router_callbacks.c │ └── Z3Switch_SED │ │ ├── README.md │ │ ├── SimplicityStudio │ │ └── z3switch_sed_mg12.sls │ │ └── src │ │ ├── Z3Switch_SED.isc │ │ └── Z3Switch_SED_callbacks.c ├── zigbee_smart_lighting_with_pir_and_ambient_light_sensor │ ├── README.md │ ├── doc │ │ ├── ALS_structure.png │ │ ├── PIR_structure.png │ │ ├── add_files_1.png │ │ ├── add_files_2.png │ │ ├── build.png │ │ ├── create_new_project_1.png │ │ ├── create_new_project_2.png │ │ ├── create_new_project_3.png │ │ ├── create_new_project_4.png │ │ ├── debug.png │ │ ├── debug_light.png │ │ ├── debug_sensor.png │ │ ├── event_tab.png │ │ ├── flash.png │ │ ├── import_1.png │ │ ├── import_2.png │ │ ├── import_files.png │ │ ├── lauch_console.png │ │ ├── lauch_console_2.png │ │ ├── model.png │ │ ├── printing_tab.png │ │ ├── run_step_1_coordinator_start.png │ │ ├── run_step_2_light_start.png │ │ ├── run_step_3_sensor_start.png │ │ ├── sensor_board.png │ │ ├── work_flow.png │ │ ├── zcl_1.png │ │ ├── zcl_2.png │ │ ├── zcl_3.png │ │ ├── zcl_4.png │ │ └── zigbee_stack.png │ ├── zigbee_coordinator_node │ │ ├── SimplicityStudioV5 │ │ │ └── zigbee_smart_light_coordinator_node.sls │ │ └── src │ │ │ └── ZigbeeCoordinatorNode_callbacks.c │ ├── zigbee_light_node │ │ ├── SimplicityStudioV5 │ │ │ └── zigbee_smart_light_light_node.sls │ │ └── src │ │ │ └── ZigbeeLightNode_callbacks.c │ └── zigbee_sensor_node │ │ ├── SimplicityStudioV5 │ │ └── zigbee_smart_light_sensor_node.sls │ │ └── src │ │ ├── ZigbeeSensorNode_callbacks.c │ │ └── occupancy │ │ ├── ambient_light.c │ │ ├── ambient_light.h │ │ ├── occupancy_config.h │ │ ├── pir.c │ │ ├── pir.h │ │ ├── si115x_functions.c │ │ └── si115x_functions.h ├── zigbee_source_routing_repair_plugin │ ├── README.md │ ├── doc │ │ ├── packet-trace.PNG │ │ └── source-routing-repair-plugin.PNG │ └── src │ │ └── source-routing-repair │ │ ├── plugin.properties │ │ ├── source-routing-repair.c │ │ └── source-routing-repair.h ├── zigbee_switching_between_applications │ ├── README.md │ ├── SimplicityStudio │ │ ├── bootloader_storage_internal_single_mg12.sls │ │ ├── zigbee_minimal_soc_0_mg12.sls │ │ └── zigbee_minimal_soc_1_mg12.sls │ ├── doc │ │ ├── Change-Flash-Size.png │ │ ├── Change-Part.png │ │ └── Internal-Slots.png │ └── src │ │ ├── ZigbeeMinimalSoc4164A0_callbacks.c │ │ ├── ZigbeeMinimalSoc4164A1_callbacks.c │ │ └── btl_main.c ├── zigbee_switching_between_applications_using_slot_manager │ ├── README.md │ ├── SimplicityStudio │ │ ├── bootloader_storage_internal_twoapps_mg12.sls │ │ ├── z3lightsoc_zc_mg12.sls │ │ └── z3switchsoc_sed_mg12.sls │ ├── doc │ │ └── Internal-Slots.png │ └── src │ │ ├── Z3LightSoc_ZC.isc │ │ ├── Z3LightSoc_ZC_callbacks.c │ │ ├── Z3SwitchSoc_SED.isc │ │ └── Z3SwitchSoc_SED_callbacks.c └── zigbee_virtual_uart │ ├── README.md │ └── SimplicityStudio │ └── z3lightsoc_vuart_mg12.sls ├── templates.xml ├── zigbee_battery_monitor ├── README.md ├── SimplicityStudio │ ├── zigbee_battery_monitor_coordinator.slcp │ └── zigbee_battery_monitor_end_device.slcp ├── config │ ├── coordinator │ │ └── zcl │ │ │ └── zcl_config.zap │ └── end_device │ │ └── zcl │ │ └── zcl_config.zap ├── image │ ├── create_coor.png │ ├── create_sed.png │ ├── form.png │ ├── hardware.png │ ├── join.png │ ├── overview.png │ ├── pin_conf.png │ ├── rac_prs_gpio.png │ └── report.png ├── inc │ └── battery_monitor.h └── src │ ├── coordinator │ ├── app.c │ └── main.c │ └── end_device │ ├── app.c │ ├── battery_monitor.c │ └── main.c ├── zigbee_bootcamp ├── README.md ├── image │ ├── Silicon-Labs-ZigBee-Onboarding-Roadmap.pdf │ ├── zigbee-icon-30x30.png │ └── zigbee.png ├── zigbee_bootcamp_light_co │ ├── SimplicityStudio │ │ └── zigbee_bootcamp_light_co.slcp │ ├── config │ │ └── zcl_config.zap │ └── src │ │ └── app.c ├── zigbee_bootcamp_switch_sed │ ├── SimplicityStudio │ │ └── zigbee_bootcamp_switch_sed.slcp │ ├── config │ │ └── zcl_config.zap │ └── src │ │ ├── app.c │ │ └── custom_token_header.h ├── zigbee_hands_on_forming_and_joining │ ├── Images │ │ ├── CLICMD.png │ │ ├── CLITest.png │ │ ├── CRCInstallCode.png │ │ ├── CaptureLight.png │ │ ├── CheckPAN.png │ │ ├── Components.png │ │ ├── ComponentsInstall.png │ │ ├── CorrectStack.png │ │ ├── DeviceEUI.png │ │ ├── FlashProgrammer.png │ │ ├── ImageDownload.png │ │ ├── InstallCode.png │ │ ├── JoinNWK.png │ │ ├── LinkKey.png │ │ ├── MissingComponents.png │ │ ├── NWKKEY.png │ │ ├── NetworkAnalyzerJoin.png │ │ ├── OpenSerial.png │ │ ├── Preferences.png │ │ ├── ProjectConfig.png │ │ ├── ProjectExample.png │ │ ├── ProjectOverview.png │ │ ├── ProjectWizard.png │ │ ├── Serial1.png │ │ ├── StartCapture.png │ │ ├── Workflow.png │ │ ├── check_install_code.png │ │ └── verify_the_installation_code.png │ └── zigbee_hands_on_forming_and_joining.md ├── zigbee_hands_on_non_volatile_data_storage │ ├── Images │ │ ├── CustomTokenHeader.png │ │ ├── NVM3.png │ │ ├── NVM3Configuration.png │ │ ├── NVM3Key.png │ │ ├── SimEE.png │ │ ├── TokenManager.png │ │ ├── TokenManagerConfiguration.png │ │ ├── mfg_manuf_id.png │ │ └── types_of_tokens.png │ └── zigbee_hands_on_non_volatile_data_storage.md ├── zigbee_hands_on_sending_onoff_commands │ ├── Images │ │ ├── Identify.png │ │ ├── Workflow.png │ │ ├── ZCL-Frame.png │ │ ├── app_c.png │ │ ├── find-and-bind-initiator.png │ │ ├── find-and-bind-target.png │ │ ├── frame-control.png │ │ ├── nwk-analyzer.png │ │ ├── on-off-commands.png │ │ └── simple-button.png │ └── zigbee_hands_on_sending_onoff_command.md └── zigbee_hands_on_using_event │ ├── using_event_working_flow.png │ └── zigbee_hands_on_using_event.md ├── zigbee_concepts ├── Zigbee Application-Layer │ ├── doc │ │ └── zigbee-icon-30x30.png │ ├── resources │ │ ├── finding-binding-01.png │ │ ├── finding-binding-02.png │ │ ├── finding-binding-03.png │ │ ├── finding-binding-04.png │ │ ├── finding-binding-05.png │ │ ├── finding-binding-06.png │ │ ├── finding-binding-07.png │ │ ├── finding-binding-08.png │ │ ├── manufacture01.png │ │ ├── manufacturer02.png │ │ ├── manufacturer03.png │ │ ├── manufacturer04.png │ │ ├── manufacturer05.png │ │ ├── manufacturer06.png │ │ ├── manufacturer07.png │ │ ├── poll-control-01.png │ │ └── poll-control-02.png │ ├── zigbee-3.0-finding-and-binding.md │ ├── zigbee-3.0-manufacturer-extension.md │ └── zigbee-3.0-poll-control-cluster.md ├── Zigbee-Introduction │ ├── Zigbee Introduction - Clusters, Endpoints, Device Types.md │ ├── Zigbee Introduction - Network Activities (Form, Join, Rejoin, Leave).md │ ├── Zigbee Introduction - Node Types, PanId, Addressing.md │ ├── Zigbee Introduction - Overview of Zigbee Cluster Library.md │ ├── Zigbee Introduction - Touchlink Commissioning.md │ ├── doc │ │ └── zigbee-icon-30x30.png │ └── resources │ │ ├── cluster-library-01.png │ │ ├── cluster-library-02.png │ │ ├── cluster-library-03.png │ │ ├── clusters-endpoint-devices-01.png │ │ ├── clusters-endpoint-devices-02.png │ │ ├── clusters-endpoint-devices-03.png │ │ ├── clusters-endpoint-devices-04.png │ │ ├── clusters-endpoint-devices-05.png │ │ ├── introduction-network-activities-01.png │ │ ├── introduction-network-activities-02.png │ │ ├── introduction-network-activities-03.png │ │ ├── introduction-network-activities-04a.png │ │ ├── introduction-network-activities-05.png │ │ ├── introduction-network-activities-06.png │ │ ├── introduction-network-activities-07.png │ │ ├── nodetypes-addressing-01.png │ │ ├── nodetypes-addressing-02.png │ │ ├── nodetypes-addressing-03.png │ │ ├── nodetypes-addressing-04.png │ │ ├── nodetypes-addressing-05.png │ │ ├── nodetypes-addressing-06.png │ │ ├── nodetypes-addressing-08.png │ │ ├── nodetypes-addressing-09.png │ │ ├── nodetypes-addressing-10.png │ │ ├── nodetypes-addressing-11.png │ │ ├── nodetypes-addressing-12.png │ │ ├── nodetypes-addressing-13.png │ │ ├── nodetypes-addressing-14.png │ │ ├── nodetypes-addressing-15.png │ │ ├── nodetypes-addressing-16.png │ │ ├── touchlink-commission-01.png │ │ ├── touchlink-commission-02.png │ │ ├── touchlink-commission-03.png │ │ ├── touchlink-commission-04.png │ │ ├── touchlink-commission-05.png │ │ ├── touchlink-commission-06.png │ │ ├── touchlink-commission-07.png │ │ ├── touchlink-commission-08.png │ │ ├── touchlink-commission-09.png │ │ ├── touchlink-commission-10.png │ │ └── touchlink-commission-11.png └── Zigbee-Networking-Concepts │ ├── Networking Concepts - Address Table.md │ ├── Networking Concepts - Asymmetric Link Detection.md │ ├── Networking Concepts - Binding.md │ ├── Networking Concepts - End Devices and Polling.md │ ├── Networking Concepts - Messaging (Unicast, Broadcast, Multicast).md │ ├── Networking Concepts - Routing (Many-to-one & Source).md │ ├── Networking Concepts - Routing (Traditional & Broadcast).md │ ├── Networking Concepts - ZDO (Network and Device Service Discovery Manager.md │ ├── Networking Concepts - Zigbee Security.md │ ├── doc │ └── zigbee-icon-30x30.png │ └── resources │ ├── address-table-01.png │ ├── asymmetric-link-01.png │ ├── asymmetric-link-02.png │ ├── asymmetric-link-03.png │ ├── asymmetric-link-04.png │ ├── asymmetric-link-05.png │ ├── asymmetric-link-06.png │ ├── binding-01.png │ ├── binding-02.png │ ├── binding-03.png │ ├── binding-04.png │ ├── binding-05.png │ ├── binding-06.png │ ├── binding-07.png │ ├── end-device-polling-01.png │ ├── end-device-polling-02.png │ ├── end-device-polling-03.png │ ├── end-device-polling-04.png │ ├── end-device-polling-05.png │ ├── end-device-polling-06.png │ ├── messaging-01.png │ ├── messaging-02.png │ ├── messaging-03.png │ ├── messaging-04.png │ ├── messaging-05.png │ ├── messaging-06.png │ ├── messaging-07.png │ ├── messaging-08.png │ ├── messaging-09.png │ ├── messaging-10.png │ ├── messaging-11.png │ ├── messaging-12.png │ ├── messaging-13.png │ ├── messaging-14.png │ ├── messaging-15.png │ ├── messaging-16.png │ ├── mtorr-01.png │ ├── mtorr-02.png │ ├── mtorr-03.png │ ├── mtorr-04.png │ ├── mtorr-05.png │ ├── mtorr-06.png │ ├── security-01.png │ ├── security-02.png │ ├── security-03.png │ ├── security-04.png │ ├── security-05.png │ ├── security-06.png │ ├── security-07.png │ ├── security-08.png │ ├── security-09.png │ ├── security-10.png │ ├── security-11.png │ ├── table-routing-01.png │ ├── table-routing-02.png │ ├── table-routing-03.png │ ├── table-routing-04.png │ ├── table-routing-05.png │ ├── table-routing-06.png │ ├── table-routing-07.png │ ├── table-routing-08.png │ ├── table-routing-09.png │ ├── table-routing-10.png │ ├── table-routing-11.png │ ├── table-routing-12.png │ ├── table-routing-13.png │ ├── table-routing-14.png │ ├── table-routing-15.png │ └── table-routing-16.png ├── zigbee_door_lock_tutorial ├── README.md ├── SimplicityStudio │ ├── zigbee_lock.slcp │ ├── zigbee_lock_controller.slcp │ └── zigbee_lock_coordinator.slcp ├── config │ └── zcl │ │ ├── zigbee_lock │ │ └── zcl_config.zap │ │ ├── zigbee_lock_controller │ │ └── zcl_config.zap │ │ └── zigbee_lock_coordinator │ │ └── zcl_config.zap ├── images │ ├── Lock_controller_1.png │ ├── Lock_controller_2.png │ ├── Lock_controller_3.png │ ├── Lock_controller_4.png │ ├── Lock_controller_5.png │ ├── Lock_controller_6.png │ ├── Lock_coordinator_1.png │ ├── Lock_coordinator_2.png │ ├── Lock_coordinator_3.png │ ├── Lock_coordinator_4.png │ ├── Lock_coordinator_5.png │ ├── Lock_device_1.png │ ├── Lock_device_10.png │ ├── Lock_device_2.png │ ├── Lock_device_3.png │ ├── Lock_device_4.png │ ├── Lock_device_5.png │ ├── Lock_device_6.png │ ├── Lock_device_7.png │ ├── Lock_device_8.png │ ├── Lock_device_9.png │ ├── New_project.png │ ├── create-network.png │ ├── extension_example_project.png │ ├── find-bind.png │ └── send-lock.png └── src │ ├── zigbee_lock │ ├── app.c │ ├── custom_token_header.h │ └── main.c │ ├── zigbee_lock_controller │ ├── app.c │ └── main.c │ └── zigbee_lock_coordinator │ ├── app.c │ └── main.c ├── zigbee_human_detection ├── README.md ├── SimplicityStudio │ ├── zigbee_human_detection_end_device.slcp │ └── zigbee_human_detection_host.slcp ├── config │ ├── tflite │ │ └── ir_human_detection.tflite │ ├── zigbee_human_detection_end_device │ │ ├── brd2704a │ │ │ └── sl_simple_button_btn0_config.h │ │ └── zcl_config.zap │ └── zigbee_human_detection_host │ │ └── zcl_config.zap ├── dataset │ ├── human.zip │ └── not_human.zip ├── image │ ├── app_loop.png │ ├── button_connection.png │ ├── cluster_configurator.png │ ├── connection.png │ ├── coordinator_connection.png │ ├── create_coor.png │ ├── create_end_device.png │ ├── create_ncp.png │ ├── dataset_human.png │ ├── dataset_nothing.png │ ├── display.png │ ├── end_device_report.png │ ├── external_button.png │ ├── flash_programmer.png │ ├── host_attr.png │ ├── i2c_instance.png │ ├── initialization.png │ ├── ir_human_detection-fpr.png │ ├── ir_human_detection-precision_vs_recall.png │ ├── ir_human_detection-roc.png │ ├── ir_human_detection-tfp_fpr.png │ ├── ir_human_detection-tpr.png │ ├── logs.png │ ├── mem_config.png │ ├── model_overview.png │ ├── network_creator.png │ ├── network_open.png │ ├── ssd1306_config.png │ ├── system_connection.png │ ├── system_overview.png │ ├── tflite_configure.png │ └── zigbee_ui.png ├── inc │ └── zigbee_human_detection_end_device │ │ ├── human_detection_ai.h │ │ ├── human_detection_ui.h │ │ ├── image_handler.h │ │ └── recognize_commands.h └── src │ ├── zigbee_human_detection_end_device │ ├── app.c │ ├── human_detection_ai.cc │ ├── human_detection_ui.c │ ├── image_handler.c │ ├── main.c │ └── recognize_commands.cc │ └── zigbee_human_detection_host │ ├── app.c │ └── main.c ├── zigbee_mfglib_extension ├── README.md ├── SimplicityStudio │ └── zigbee_mfglib_extension.slcp ├── config │ └── zcl │ │ └── zcl_config.zap ├── image │ ├── NAcapture.png │ ├── PERtest.png │ ├── ReceiveMode.png │ ├── contPacktest.png │ ├── create_project.png │ └── gpiohelp.png └── src │ ├── main.c │ └── manufacturing-library-cli-soc-extend.c ├── zigbee_network_traces ├── README.md ├── app_link_key │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── app_link_key_coordinator.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ ├── create_project.png │ │ ├── keys_print_router.png │ │ └── keys_print_sed.png │ ├── router │ │ ├── SimplicityStudio │ │ │ └── app_link_key_router.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── sleepy_end_device │ │ ├── SimplicityStudio │ │ │ └── app_link_key_sed.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ ├── app_link_key.h │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── app_link_key.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── trace_app_link_key.isd │ └── trace_app_link_key.pcapng ├── joining_install_code │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── joining_install_code_coordinator.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ └── create_project.png │ ├── program_install_code.bat │ ├── router │ │ ├── SimplicityStudio │ │ │ └── joining_install_code_router.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── sleepy_end_device │ │ ├── SimplicityStudio │ │ │ └── joining_install_code_sed.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── trace_error │ │ ├── readme.txt │ │ ├── trace_ERROR_joining_two_devices.isd │ │ └── trace_ERROR_joining_two_devices.pcapng │ ├── trace_joining_router_sed.isd │ └── trace_joining_router_sed.pcapng ├── joining_well_known_key │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── joining_well_known_key_coordinator.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ ├── create_project.png │ │ └── result.png │ ├── router │ │ ├── SimplicityStudio │ │ │ └── joining_well_known_key_router.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── sleepy_end_device │ │ ├── SimplicityStudio │ │ │ └── joining_well_known_key_sed.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── trace_joining_well_known_key.isd │ └── trace_joining_well_known_key.pcapng ├── multicast_switch_light │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── zigbee_multicast_switch_light_co.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ ├── button_multicast.h │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── button_multicast.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ └── create_project.png │ ├── multicast_process_trace.isd │ ├── multicast_process_trace.pcapng │ └── router │ │ ├── SimplicityStudio │ │ └── zigbee_multicast_switch_light_ro.slcp │ │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ │ ├── inc │ │ ├── led_ctrl_ro.h │ │ └── network_join.h │ │ └── src │ │ ├── app.c │ │ ├── led_ctrl_ro.c │ │ ├── main.c │ │ └── network_join.c ├── network_key_update │ ├── README.md │ ├── SimplicityStudio │ │ ├── zigbee_network_key_update_co.slcp │ │ ├── zigbee_network_key_update_ro.slcp │ │ └── zigbee_network_key_update_sed.slcp │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ ├── image │ │ ├── SEDKeysPrintAfterUpdate.png │ │ ├── TCKeysPrintAfterUpdate.png │ │ ├── TCKeysPrintBeforeUpdate.png │ │ ├── create_prj.png │ │ ├── data.png │ │ ├── form_network.png │ │ └── start_capture.png │ ├── inc │ │ ├── coordinator │ │ │ ├── network_creation.h │ │ │ └── nwk_key_update.h │ │ └── router_and_sleepy_end_device │ │ │ └── network_join.h │ ├── src │ │ ├── coordinator │ │ │ ├── app.c │ │ │ ├── network_creation.c │ │ │ └── nwk_key_update.c │ │ ├── main.c │ │ └── router_and_sleepy_end_device │ │ │ ├── app.c │ │ │ └── network_join.c │ ├── trace_nwk_key_update.isd │ └── trace_nwk_key_update.pcapng ├── secured_rejoining │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── zigbee_secured_rejoining_co.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ ├── create_project.png │ │ ├── rejoin_capture.png │ │ └── secured_rejoin_tc.png │ ├── router │ │ ├── SimplicityStudio │ │ │ └── zigbee_secured_rejoining_ro.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── sleepy_end_device │ │ ├── SimplicityStudio │ │ │ └── zigbee_secured_rejoining_sed.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── trace_secured_rejoining.isd │ └── trace_secured_rejoining.pcapng ├── tc_global_link_key │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── tc_global_link_key_coordinator.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ ├── create_project.png │ │ ├── result.png │ │ ├── routerLinkKey.png │ │ └── sedLinkKey.png │ ├── router │ │ ├── SimplicityStudio │ │ │ └── tc_global_link_key_router.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── sleepy_end_device │ │ ├── SimplicityStudio │ │ │ └── tc_global_link_key_sed.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ ├── trace_global_link_key.isd │ └── trace_global_link_key.pcapng ├── tc_hashed_link_key │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── tc_hashed_link_key_coordinator.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_creation.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_creation.c │ ├── image │ │ ├── HMAC_Check_Router.png │ │ ├── RouterLinkKeyPacket.png │ │ ├── SedLinkKeyPacket.png │ │ └── create_examples.png │ ├── router │ │ ├── SimplicityStudio │ │ │ └── tc_hashed_link_key_router.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ ├── inc │ │ │ └── network_join.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── main.c │ │ │ └── network_join.c │ └── sleepy_end_device │ │ ├── SimplicityStudio │ │ └── tc_hashed_link_key_sed.slcp │ │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ │ ├── inc │ │ └── network_join.h │ │ └── src │ │ ├── app.c │ │ ├── main.c │ │ └── network_join.c ├── tc_unique_link_key │ ├── README.md │ ├── coordinator │ │ ├── SimplicityStudio │ │ │ └── tc_unique_link_key_co.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ └── src │ │ │ ├── app.c │ │ │ └── main.c │ ├── image │ │ ├── command_co.png │ │ ├── command_sed.png │ │ ├── create_example.png │ │ ├── form_and_open.png │ │ ├── join.png │ │ └── keys_print.png │ ├── router │ │ ├── SimplicityStudio │ │ │ └── tc_unique_link_key_ro.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ └── src │ │ │ ├── app.c │ │ │ └── main.c │ ├── sleepy_end_device │ │ ├── SimplicityStudio │ │ │ └── tc_unique_link_key_sed.slcp │ │ ├── config │ │ │ └── zcl │ │ │ │ └── zcl_config.zap │ │ └── src │ │ │ ├── app.c │ │ │ └── main.c │ ├── trace_tc_unique_linkkey.isd │ └── trace_tc_unique_linkkey.pcapng └── unsecured_rejoining │ ├── README.md │ ├── coordinator │ ├── SimplicityStudio │ │ └── unsecured_rejoining_coordinator.slcp │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ ├── inc │ │ ├── network_creation.h │ │ └── nwk_key_update.h │ └── src │ │ ├── app.c │ │ ├── main.c │ │ ├── network_creation.c │ │ └── nwk_key_update.c │ ├── image │ ├── create_project.png │ ├── networkRejoinConsole.png │ ├── nwkKeySend.png │ └── unsecuredTraceRejoin.png │ ├── router │ ├── SimplicityStudio │ │ └── unsecured_rejoining_router.slcp │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ ├── inc │ │ └── network_join.h │ └── src │ │ ├── app.c │ │ ├── main.c │ │ └── network_join.c │ ├── sleepy_end_device │ ├── SimplicityStudio │ │ └── unsecured_rejoining_sed.slcp │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ ├── inc │ │ ├── network_join.h │ │ └── network_rejoin.h │ └── src │ │ ├── app.c │ │ ├── main.c │ │ ├── network_join.c │ │ └── network_rejoin.c │ ├── trace_unsecured_rejoining.isd │ └── trace_unsecured_rejoining.pcapng ├── zigbee_philips_hue_with_home_assistant_os ├── README.md ├── image │ ├── ADD-on_Config.png │ ├── Add-on_Log.png │ ├── Automation_Editing.png │ ├── Automation_Overview.png │ ├── Automation_Script.png │ ├── Bulb_control.png │ ├── CPC_Security.png │ ├── Check_Configuration.png │ ├── Check_and_Restart.png │ ├── Config_1.png │ ├── Create_Helper_button.png │ ├── Diagnostic_Config.png │ ├── Docker_Warning.png │ ├── Entity_GUI.png │ ├── Entity_ID.png │ ├── Example_Project_Selection.png │ ├── File_Editor.png │ ├── Flash_Map.png │ ├── Group.png │ ├── HA_Webpage.png │ ├── Helpers_Page.png │ ├── Joining_Network.png │ ├── Jumping_to_Emergency_Console.png │ ├── Launcher.png │ ├── Light_Group.png │ ├── Network_Visualization.png │ ├── New_Automation.png │ ├── Overview.png │ ├── Project_Wizard.png │ ├── Scene.png │ ├── Scene_Check.png │ ├── Scenes.png │ ├── Startup_Config.png │ ├── Startup_Log.png │ ├── Startup_Page.png │ ├── System_Overview.png │ ├── URL.png │ ├── Welcome_Screen.png │ ├── YAML_Configuration1.png │ ├── YAML_Configuration2.png │ ├── YAML_Configuration3.png │ ├── ZHA_Page.png │ ├── ZHA_Startup.png │ └── ZHA_config.png └── src │ └── automation.yaml ├── zigbee_rtc_time_sync ├── README.md ├── SimplicityStudio │ └── zigbee_rtc_time_sync.slcp ├── config │ └── zcl_config.zap ├── image │ ├── connect_ncp.png │ ├── create_device.png │ ├── create_gateway.png │ ├── create_minimal.png │ ├── create_ncp.png │ ├── form_network.png │ ├── hardware.png │ ├── join_network.png │ ├── make_gateway.png │ ├── open_network.png │ ├── print_time.png │ ├── query_time.png │ └── time_cluster.png └── src │ ├── end_device │ ├── app.c │ └── main.c │ └── gateway │ ├── app.c │ └── main.c ├── zigbee_sed_rht_sensor ├── README.md ├── SimplicityStudio │ ├── zigbee_rht_host.slcp │ └── zigbee_rht_sed.slcp ├── config │ └── zcl │ │ ├── zigbee_rht_host │ │ └── zcl_config.zap │ │ └── zigbee_rht_sed │ │ └── zcl_config.zap ├── image │ ├── Decryption_keys.jpg │ ├── Keys_print_command_output.jpg │ ├── Network_Analyzer_capture_example.jpg │ ├── Network_Analyzer_event_details.jpg │ ├── SED_application_output_log.png │ ├── SED_button_report_output_log.png │ ├── app_diagram.png │ ├── create_host_app.png │ ├── create_ncp.png │ ├── create_sed_app.png │ ├── docker.png │ ├── host_application_output_log.png │ ├── network_creation_and_info_output.png │ ├── network_security.png │ ├── project_folder.png │ └── stream_uart_vcom.png └── src │ ├── zigbee_rht_host │ ├── app.c │ └── main.c │ └── zigbee_rht_sed │ ├── app.c │ └── main.c ├── zigbee_sed_z3switch ├── README.md ├── SimplicityStudio │ └── zigbee_sleepy_switch.slcp ├── config │ └── zcl │ │ └── zcl_config.zap ├── image │ ├── board_control_config.png │ ├── console_log.png │ ├── create_project.png │ ├── debug_print_config.png │ ├── device_config.png │ ├── energy_emu_config.png │ ├── energy_not_optimize.png │ ├── energy_profiler.png │ ├── hardware_connection.png │ ├── simple_button_config.png │ ├── watchdog_config.png │ └── zcl_framework_core_config.png ├── inc │ └── app.h └── src │ ├── app.c │ └── main.c ├── zigbee_smart_lighting ├── README.md ├── image │ ├── Flow_Steps.png │ ├── Model.png │ ├── create_example.png │ └── i2c_config.png ├── zigbee_smart_lighting_light │ ├── SimplicityStudio │ │ └── zigbee_smart_lighting_light.slcp │ ├── config │ │ └── zcl │ │ │ └── zcl_config.zap │ └── src │ │ ├── app.c │ │ └── main.c └── zigbee_smart_lighting_sensor │ ├── SimplicityStudio │ └── zigbee_smart_lighting_sensor.slcp │ ├── config │ ├── xg24 │ │ └── sl_i2cspm_mikroe_config.h │ └── zcl │ │ └── zcl_config.zap │ └── src │ ├── app.c │ └── main.c └── zigbee_soc_coordinator_tcso ├── README.md ├── SimplicityStudio └── zigbee_soc_coordinator_tcso.slcp ├── config └── zcl │ └── zcl_config.zap ├── inc ├── trust_center_swap_out_callbacks.h └── trust_center_swap_out_cli_defs.h └── src ├── app.c ├── main.c └── trust_center_swap_out_callbacks.c /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cla_assistant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/.github/workflows/cla_assistant.yaml -------------------------------------------------------------------------------- /.github/workflows/pull_request_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/.github/workflows/pull_request_check.yml -------------------------------------------------------------------------------- /.github/workflows/trufflehog_security_scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/.github/workflows/trufflehog_security_scan.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | zigbee_bootcamp/.DS_Store 3 | -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/README.md -------------------------------------------------------------------------------- /custom_cpcd_LED_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/README.md -------------------------------------------------------------------------------- /custom_cpcd_LED_example/SimplicityStudio/custom_cpcd_led_example.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/SimplicityStudio/custom_cpcd_led_example.slcp -------------------------------------------------------------------------------- /custom_cpcd_LED_example/custom_cpc_host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/custom_cpc_host/Makefile -------------------------------------------------------------------------------- /custom_cpcd_LED_example/custom_cpc_host/cpc_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/custom_cpc_host/cpc_commands.h -------------------------------------------------------------------------------- /custom_cpcd_LED_example/custom_cpc_host/cpcledbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/custom_cpc_host/cpcledbutton.c -------------------------------------------------------------------------------- /custom_cpcd_LED_example/custom_cpc_host/sl_cpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/custom_cpc_host/sl_cpc.h -------------------------------------------------------------------------------- /custom_cpcd_LED_example/image/bootloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/image/bootloader.png -------------------------------------------------------------------------------- /custom_cpcd_LED_example/image/create_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/image/create_example.png -------------------------------------------------------------------------------- /custom_cpcd_LED_example/image/create_rcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/image/create_rcp.png -------------------------------------------------------------------------------- /custom_cpcd_LED_example/rcp/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/rcp/app.c -------------------------------------------------------------------------------- /custom_cpcd_LED_example/rcp/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/rcp/app.h -------------------------------------------------------------------------------- /custom_cpcd_LED_example/rcp/cpc_button_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/rcp/cpc_button_led.c -------------------------------------------------------------------------------- /custom_cpcd_LED_example/rcp/cpc_button_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/rcp/cpc_button_led.h -------------------------------------------------------------------------------- /custom_cpcd_LED_example/rcp/cpc_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/rcp/cpc_commands.h -------------------------------------------------------------------------------- /custom_cpcd_LED_example/rcp/reset_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/custom_cpcd_LED_example/rcp/reset_util.h -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/README.md -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/SimplicityStudio/dmp_sed_light_mg12.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/SimplicityStudio/dmp_sed_light_mg12.sls -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_bootloader_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_bootloader_configuration.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_bt_advertiser_interval_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_bt_advertiser_interval_1.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_bt_advertiser_interval_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_bt_advertiser_interval_2.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_bt_advertiser_interval_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_bt_advertiser_interval_3.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_generation_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_generation_directory.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_long_poll_interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_long_poll_interval.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_reporting_interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_reporting_interval.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/change_ui_demo_code_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/change_ui_demo_code_set.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/comment_display_function_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/comment_display_function_call.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/disable_display_driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/disable_display_driver.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/disable_glib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/disable_glib.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/disable_rtos_polling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/disable_rtos_polling.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/enable_flash_powerdown_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/enable_flash_powerdown_plugin.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/test_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/test_result.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/doc/test_result_no_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/doc/test_result_no_event.png -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/iar/dmp_sed_light_mg12.ewd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/iar/dmp_sed_light_mg12.ewd -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/iar/dmp_sed_light_mg12.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/iar/dmp_sed_light_mg12.ewp -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/iar/dmp_sed_light_mg12.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/iar/dmp_sed_light_mg12.eww -------------------------------------------------------------------------------- /deprecated/dmp_sed_light/EFR32MG12/src/dmp_sed_light_mg12_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/dmp_sed_light/EFR32MG12/src/dmp_sed_light_mg12_callbacks.c -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/Door_Lock/src/custom-token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/Door_Lock/src/custom-token.h -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/CRC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/CRC.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/DebugAdapters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/DebugAdapters.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/EUI64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/EUI64.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/HADoorLock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/HADoorLock.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/LinkKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/LinkKeys.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/ReadLockState.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/ReadLockState.PNG -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/SetPin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/SetPin.PNG -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/SilabsZigbee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/SilabsZigbee.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/Soc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/Soc.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/UnlockCommand.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/UnlockCommand.PNG -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/ZigbeeMinimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/References/ZigbeeMinimal.png -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/program_install_code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_6.x/program_install_code.bat -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_1.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_2.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_3.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_4.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_5.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_56.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_6.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_67.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_7.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_8.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_controller_9.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_1.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_10.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_11.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_12.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_13.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_14.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_15.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_16.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_17.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_2.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_3.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_4.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_5.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_6.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_7.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_8.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_coordinator_9.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_1.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_10.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_11.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_12.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_18.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_19.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_2.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_3.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_4.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_5.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_6.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_7.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_8.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/Image/Lock_device_9.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/src/Zigbee-Lock-UC.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/src/Zigbee-Lock-UC.sls -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/src/app.c -------------------------------------------------------------------------------- /deprecated/zigbee_door_lock_tutorial/Zigbee_7x/src/sl_custom_token_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_door_lock_tutorial/Zigbee_7x/src/sl_custom_token_header.h -------------------------------------------------------------------------------- /deprecated/zigbee_green_power_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_green_power_gateway/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_green_power_gateway/SimplicityStudio/GP_Gateway_Host.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_green_power_gateway/SimplicityStudio/GP_Gateway_Host.sls -------------------------------------------------------------------------------- /deprecated/zigbee_green_power_gateway/SimplicityStudio/GP_Gateway_NCP.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_green_power_gateway/SimplicityStudio/GP_Gateway_NCP.sls -------------------------------------------------------------------------------- /deprecated/zigbee_green_power_gateway/doc/GreenPowerKbaSchematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_green_power_gateway/doc/GreenPowerKbaSchematic.png -------------------------------------------------------------------------------- /deprecated/zigbee_green_power_gateway/src/GP_Gateway_Host_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_green_power_gateway/src/GP_Gateway_Host_callbacks.c -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/attachments/host_src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/attachments/host_src/commands.c -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/attachments/host_src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/attachments/host_src/commands.h -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/attachments/router_src/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/attachments/router_src/gui.c -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/attachments/router_src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/attachments/router_src/gui.h -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/attachments/router_src/queries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/attachments/router_src/queries.c -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/attachments/router_src/queries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/attachments/router_src/queries.h -------------------------------------------------------------------------------- /deprecated/zigbee_large_network_testing/figures/gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_large_network_testing/figures/gui.jpg -------------------------------------------------------------------------------- /deprecated/zigbee_network_testing_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_network_testing_plugin/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_network_testing_plugin/doc/cli.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_network_testing_plugin/doc/cli.PNG -------------------------------------------------------------------------------- /deprecated/zigbee_network_testing_plugin/doc/network_testing_plugin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_network_testing_plugin/doc/network_testing_plugin.PNG -------------------------------------------------------------------------------- /deprecated/zigbee_network_testing_plugin/src/network-testing-cli/cli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_network_testing_plugin/src/network-testing-cli/cli.xml -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/doc/Bootup-Rejoin-Sniffer.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/doc/Bootup-Rejoin-Sniffer.isd -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/doc/Bootup-Rejoin-Sniffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/doc/Bootup-Rejoin-Sniffer.png -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/doc/Bootup-Rejoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/doc/Bootup-Rejoin.png -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/doc/Change-Part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/doc/Change-Part.png -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/doc/Make-A-Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/doc/Make-A-Copy.png -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/doc/Optimized-Bootup-Rejoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/doc/Optimized-Bootup-Rejoin.png -------------------------------------------------------------------------------- /deprecated/zigbee_optimize_bootup_rejoin/src/af-main-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_optimize_bootup_rejoin/src/af-main-common.c -------------------------------------------------------------------------------- /deprecated/zigbee_sed_asynchronous_transmission/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_sed_asynchronous_transmission/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_sed_asynchronous_transmission/Z3Light_EndDevice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_sed_asynchronous_transmission/Z3Light_EndDevice/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_sed_asynchronous_transmission/Z3Light_Router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_sed_asynchronous_transmission/Z3Light_Router/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_sed_asynchronous_transmission/Z3Switch_SED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_sed_asynchronous_transmission/Z3Switch_SED/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_smart_lighting_with_pir_and_ambient_light_sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_smart_lighting_with_pir_and_ambient_light_sensor/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_source_routing_repair_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_source_routing_repair_plugin/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_source_routing_repair_plugin/doc/packet-trace.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_source_routing_repair_plugin/doc/packet-trace.PNG -------------------------------------------------------------------------------- /deprecated/zigbee_switching_between_applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_switching_between_applications/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_switching_between_applications/doc/Change-Flash-Size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_switching_between_applications/doc/Change-Flash-Size.png -------------------------------------------------------------------------------- /deprecated/zigbee_switching_between_applications/doc/Change-Part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_switching_between_applications/doc/Change-Part.png -------------------------------------------------------------------------------- /deprecated/zigbee_switching_between_applications/doc/Internal-Slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_switching_between_applications/doc/Internal-Slots.png -------------------------------------------------------------------------------- /deprecated/zigbee_switching_between_applications/src/btl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_switching_between_applications/src/btl_main.c -------------------------------------------------------------------------------- /deprecated/zigbee_virtual_uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_virtual_uart/README.md -------------------------------------------------------------------------------- /deprecated/zigbee_virtual_uart/SimplicityStudio/z3lightsoc_vuart_mg12.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/deprecated/zigbee_virtual_uart/SimplicityStudio/z3lightsoc_vuart_mg12.sls -------------------------------------------------------------------------------- /templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/templates.xml -------------------------------------------------------------------------------- /zigbee_battery_monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/README.md -------------------------------------------------------------------------------- /zigbee_battery_monitor/config/coordinator/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/config/coordinator/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_battery_monitor/config/end_device/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/config/end_device/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/create_coor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/create_coor.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/create_sed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/create_sed.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/form.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/hardware.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/join.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/overview.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/pin_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/pin_conf.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/rac_prs_gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/rac_prs_gpio.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/image/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/image/report.png -------------------------------------------------------------------------------- /zigbee_battery_monitor/inc/battery_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/inc/battery_monitor.h -------------------------------------------------------------------------------- /zigbee_battery_monitor/src/coordinator/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/src/coordinator/app.c -------------------------------------------------------------------------------- /zigbee_battery_monitor/src/coordinator/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/src/coordinator/main.c -------------------------------------------------------------------------------- /zigbee_battery_monitor/src/end_device/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/src/end_device/app.c -------------------------------------------------------------------------------- /zigbee_battery_monitor/src/end_device/battery_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/src/end_device/battery_monitor.c -------------------------------------------------------------------------------- /zigbee_battery_monitor/src/end_device/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_battery_monitor/src/end_device/main.c -------------------------------------------------------------------------------- /zigbee_bootcamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/README.md -------------------------------------------------------------------------------- /zigbee_bootcamp/image/Silicon-Labs-ZigBee-Onboarding-Roadmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/image/Silicon-Labs-ZigBee-Onboarding-Roadmap.pdf -------------------------------------------------------------------------------- /zigbee_bootcamp/image/zigbee-icon-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/image/zigbee-icon-30x30.png -------------------------------------------------------------------------------- /zigbee_bootcamp/image/zigbee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/image/zigbee.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_bootcamp_light_co/config/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_bootcamp_light_co/config/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_bootcamp_light_co/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_bootcamp_light_co/src/app.c -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_bootcamp_switch_sed/config/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_bootcamp_switch_sed/config/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_bootcamp_switch_sed/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_bootcamp_switch_sed/src/app.c -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_bootcamp_switch_sed/src/custom_token_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_bootcamp_switch_sed/src/custom_token_header.h -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CLICMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CLICMD.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CLITest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CLITest.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CaptureLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CaptureLight.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CheckPAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CheckPAN.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Components.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CorrectStack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/CorrectStack.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/DeviceEUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/DeviceEUI.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/ImageDownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/ImageDownload.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/InstallCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/InstallCode.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/JoinNWK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/JoinNWK.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/LinkKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/LinkKey.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/NWKKEY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/NWKKEY.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/OpenSerial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/OpenSerial.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Preferences.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/ProjectConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/ProjectConfig.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/ProjectWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/ProjectWizard.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Serial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Serial1.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_forming_and_joining/Images/Workflow.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_non_volatile_data_storage/Images/NVM3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_non_volatile_data_storage/Images/NVM3.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_non_volatile_data_storage/Images/SimEE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_non_volatile_data_storage/Images/SimEE.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_sending_onoff_commands/Images/Identify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_sending_onoff_commands/Images/Identify.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_sending_onoff_commands/Images/Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_sending_onoff_commands/Images/Workflow.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_sending_onoff_commands/Images/app_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_sending_onoff_commands/Images/app_c.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_using_event/using_event_working_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_using_event/using_event_working_flow.png -------------------------------------------------------------------------------- /zigbee_bootcamp/zigbee_hands_on_using_event/zigbee_hands_on_using_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_bootcamp/zigbee_hands_on_using_event/zigbee_hands_on_using_event.md -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/doc/zigbee-icon-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/doc/zigbee-icon-30x30.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/finding-binding-08.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacture01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacture01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacturer02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacturer02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacturer03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacturer03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacturer04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacturer04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacturer05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacturer05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacturer06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacturer06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/manufacturer07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/manufacturer07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/poll-control-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/poll-control-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/resources/poll-control-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/resources/poll-control-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee Application-Layer/zigbee-3.0-finding-and-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee Application-Layer/zigbee-3.0-finding-and-binding.md -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/doc/zigbee-icon-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/doc/zigbee-icon-30x30.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/cluster-library-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/cluster-library-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/cluster-library-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/cluster-library-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/cluster-library-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/cluster-library-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-08.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-09.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-10.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-11.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-12.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-13.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-14.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-15.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/nodetypes-addressing-16.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-08.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-09.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-10.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Introduction/resources/touchlink-commission-11.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/doc/zigbee-icon-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/doc/zigbee-icon-30x30.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/address-table-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/address-table-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/binding-07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-08.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-09.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-10.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-11.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-12.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-13.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-14.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-15.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/messaging-16.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/mtorr-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-08.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-09.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-10.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/security-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/security-11.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-01.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-02.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-03.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-04.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-05.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-06.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-07.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-08.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-09.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-10.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-11.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-12.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-13.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-14.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-15.png -------------------------------------------------------------------------------- /zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_concepts/Zigbee-Networking-Concepts/resources/table-routing-16.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/README.md -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/SimplicityStudio/zigbee_lock.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/SimplicityStudio/zigbee_lock.slcp -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/SimplicityStudio/zigbee_lock_controller.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/SimplicityStudio/zigbee_lock_controller.slcp -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/SimplicityStudio/zigbee_lock_coordinator.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/SimplicityStudio/zigbee_lock_coordinator.slcp -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/config/zcl/zigbee_lock/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/config/zcl/zigbee_lock/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/config/zcl/zigbee_lock_controller/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/config/zcl/zigbee_lock_controller/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_controller_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_controller_1.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_controller_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_controller_2.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_controller_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_controller_3.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_controller_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_controller_4.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_controller_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_controller_5.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_controller_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_controller_6.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_coordinator_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_coordinator_1.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_coordinator_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_coordinator_2.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_coordinator_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_coordinator_3.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_coordinator_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_coordinator_4.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_coordinator_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_coordinator_5.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_1.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_10.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_2.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_3.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_4.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_5.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_6.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_7.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_8.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/Lock_device_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/Lock_device_9.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/New_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/New_project.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/create-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/create-network.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/extension_example_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/extension_example_project.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/find-bind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/find-bind.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/images/send-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/images/send-lock.png -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock/app.c -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock/custom_token_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock/custom_token_header.h -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock/main.c -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock_controller/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock_controller/app.c -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock_controller/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock_controller/main.c -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock_coordinator/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock_coordinator/app.c -------------------------------------------------------------------------------- /zigbee_door_lock_tutorial/src/zigbee_lock_coordinator/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_door_lock_tutorial/src/zigbee_lock_coordinator/main.c -------------------------------------------------------------------------------- /zigbee_human_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/README.md -------------------------------------------------------------------------------- /zigbee_human_detection/SimplicityStudio/zigbee_human_detection_host.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/SimplicityStudio/zigbee_human_detection_host.slcp -------------------------------------------------------------------------------- /zigbee_human_detection/config/tflite/ir_human_detection.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/config/tflite/ir_human_detection.tflite -------------------------------------------------------------------------------- /zigbee_human_detection/config/zigbee_human_detection_host/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/config/zigbee_human_detection_host/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_human_detection/dataset/human.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/dataset/human.zip -------------------------------------------------------------------------------- /zigbee_human_detection/dataset/not_human.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/dataset/not_human.zip -------------------------------------------------------------------------------- /zigbee_human_detection/image/app_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/app_loop.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/button_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/button_connection.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/cluster_configurator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/cluster_configurator.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/connection.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/coordinator_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/coordinator_connection.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/create_coor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/create_coor.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/create_end_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/create_end_device.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/create_ncp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/create_ncp.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/dataset_human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/dataset_human.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/dataset_nothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/dataset_nothing.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/display.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/end_device_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/end_device_report.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/external_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/external_button.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/flash_programmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/flash_programmer.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/host_attr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/host_attr.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/i2c_instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/i2c_instance.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/initialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/initialization.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/ir_human_detection-fpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/ir_human_detection-fpr.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/ir_human_detection-precision_vs_recall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/ir_human_detection-precision_vs_recall.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/ir_human_detection-roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/ir_human_detection-roc.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/ir_human_detection-tfp_fpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/ir_human_detection-tfp_fpr.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/ir_human_detection-tpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/ir_human_detection-tpr.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/logs.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/mem_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/mem_config.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/model_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/model_overview.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/network_creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/network_creator.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/network_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/network_open.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/ssd1306_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/ssd1306_config.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/system_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/system_connection.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/system_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/system_overview.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/tflite_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/tflite_configure.png -------------------------------------------------------------------------------- /zigbee_human_detection/image/zigbee_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/image/zigbee_ui.png -------------------------------------------------------------------------------- /zigbee_human_detection/src/zigbee_human_detection_end_device/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/src/zigbee_human_detection_end_device/app.c -------------------------------------------------------------------------------- /zigbee_human_detection/src/zigbee_human_detection_end_device/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/src/zigbee_human_detection_end_device/main.c -------------------------------------------------------------------------------- /zigbee_human_detection/src/zigbee_human_detection_host/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/src/zigbee_human_detection_host/app.c -------------------------------------------------------------------------------- /zigbee_human_detection/src/zigbee_human_detection_host/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_human_detection/src/zigbee_human_detection_host/main.c -------------------------------------------------------------------------------- /zigbee_mfglib_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/README.md -------------------------------------------------------------------------------- /zigbee_mfglib_extension/SimplicityStudio/zigbee_mfglib_extension.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/SimplicityStudio/zigbee_mfglib_extension.slcp -------------------------------------------------------------------------------- /zigbee_mfglib_extension/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_mfglib_extension/image/NAcapture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/image/NAcapture.png -------------------------------------------------------------------------------- /zigbee_mfglib_extension/image/PERtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/image/PERtest.png -------------------------------------------------------------------------------- /zigbee_mfglib_extension/image/ReceiveMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/image/ReceiveMode.png -------------------------------------------------------------------------------- /zigbee_mfglib_extension/image/contPacktest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/image/contPacktest.png -------------------------------------------------------------------------------- /zigbee_mfglib_extension/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/image/create_project.png -------------------------------------------------------------------------------- /zigbee_mfglib_extension/image/gpiohelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/image/gpiohelp.png -------------------------------------------------------------------------------- /zigbee_mfglib_extension/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/src/main.c -------------------------------------------------------------------------------- /zigbee_mfglib_extension/src/manufacturing-library-cli-soc-extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_mfglib_extension/src/manufacturing-library-cli-soc-extend.c -------------------------------------------------------------------------------- /zigbee_network_traces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/coordinator/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/coordinator/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/coordinator/inc/network_creation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/coordinator/inc/network_creation.h -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/coordinator/src/network_creation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/coordinator/src/network_creation.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/image/keys_print_router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/image/keys_print_router.png -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/image/keys_print_sed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/image/keys_print_sed.png -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/router/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/router/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/sleepy_end_device/inc/app_link_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/sleepy_end_device/inc/app_link_key.h -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/sleepy_end_device/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/sleepy_end_device/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/sleepy_end_device/src/app_link_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/sleepy_end_device/src/app_link_key.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/sleepy_end_device/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/sleepy_end_device/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/trace_app_link_key.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/trace_app_link_key.isd -------------------------------------------------------------------------------- /zigbee_network_traces/app_link_key/trace_app_link_key.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/app_link_key/trace_app_link_key.pcapng -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/program_install_code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/program_install_code.bat -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/trace_error/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/trace_error/readme.txt -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/trace_joining_router_sed.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/trace_joining_router_sed.isd -------------------------------------------------------------------------------- /zigbee_network_traces/joining_install_code/trace_joining_router_sed.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_install_code/trace_joining_router_sed.pcapng -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/image/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/image/result.png -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/joining_well_known_key/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/joining_well_known_key/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/multicast_process_trace.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/multicast_process_trace.isd -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/router/inc/led_ctrl_ro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/router/inc/led_ctrl_ro.h -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/router/src/led_ctrl_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/router/src/led_ctrl_ro.c -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/multicast_switch_light/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/multicast_switch_light/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/SEDKeysPrintAfterUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/SEDKeysPrintAfterUpdate.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/TCKeysPrintAfterUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/TCKeysPrintAfterUpdate.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/TCKeysPrintBeforeUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/TCKeysPrintBeforeUpdate.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/create_prj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/create_prj.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/data.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/form_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/form_network.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/image/start_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/image/start_capture.png -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/inc/coordinator/nwk_key_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/inc/coordinator/nwk_key_update.h -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/src/coordinator/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/src/coordinator/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/src/coordinator/nwk_key_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/src/coordinator/nwk_key_update.c -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/trace_nwk_key_update.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/trace_nwk_key_update.isd -------------------------------------------------------------------------------- /zigbee_network_traces/network_key_update/trace_nwk_key_update.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/network_key_update/trace_nwk_key_update.pcapng -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/coordinator/inc/network_creation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/coordinator/inc/network_creation.h -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/coordinator/src/network_creation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/coordinator/src/network_creation.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/image/rejoin_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/image/rejoin_capture.png -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/image/secured_rejoin_tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/image/secured_rejoin_tc.png -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/router/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/router/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/trace_secured_rejoining.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/trace_secured_rejoining.isd -------------------------------------------------------------------------------- /zigbee_network_traces/secured_rejoining/trace_secured_rejoining.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/secured_rejoining/trace_secured_rejoining.pcapng -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/image/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/image/result.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/image/routerLinkKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/image/routerLinkKey.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/image/sedLinkKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/image/sedLinkKey.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/router/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/router/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/trace_global_link_key.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/trace_global_link_key.isd -------------------------------------------------------------------------------- /zigbee_network_traces/tc_global_link_key/trace_global_link_key.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_global_link_key/trace_global_link_key.pcapng -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/image/HMAC_Check_Router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/image/HMAC_Check_Router.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/image/RouterLinkKeyPacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/image/RouterLinkKeyPacket.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/image/SedLinkKeyPacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/image/SedLinkKeyPacket.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/image/create_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/image/create_examples.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/router/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/router/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_hashed_link_key/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_hashed_link_key/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/image/command_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/image/command_co.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/image/command_sed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/image/command_sed.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/image/create_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/image/create_example.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/image/form_and_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/image/form_and_open.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/image/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/image/join.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/image/keys_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/image/keys_print.png -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/router/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/router/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/trace_tc_unique_linkkey.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/trace_tc_unique_linkkey.isd -------------------------------------------------------------------------------- /zigbee_network_traces/tc_unique_link_key/trace_tc_unique_linkkey.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/tc_unique_link_key/trace_tc_unique_linkkey.pcapng -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/README.md -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/coordinator/inc/nwk_key_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/coordinator/inc/nwk_key_update.h -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/coordinator/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/coordinator/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/coordinator/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/coordinator/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/coordinator/src/nwk_key_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/coordinator/src/nwk_key_update.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/image/create_project.png -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/image/networkRejoinConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/image/networkRejoinConsole.png -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/image/nwkKeySend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/image/nwkKeySend.png -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/image/unsecuredTraceRejoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/image/unsecuredTraceRejoin.png -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/router/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/router/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/router/inc/network_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/router/inc/network_join.h -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/router/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/router/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/router/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/router/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/router/src/network_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/router/src/network_join.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/sleepy_end_device/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/sleepy_end_device/src/app.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/sleepy_end_device/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/sleepy_end_device/src/main.c -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/trace_unsecured_rejoining.isd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/trace_unsecured_rejoining.isd -------------------------------------------------------------------------------- /zigbee_network_traces/unsecured_rejoining/trace_unsecured_rejoining.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_network_traces/unsecured_rejoining/trace_unsecured_rejoining.pcapng -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/README.md -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/ADD-on_Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/ADD-on_Config.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Add-on_Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Add-on_Log.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Automation_Editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Automation_Editing.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Automation_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Automation_Overview.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Automation_Script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Automation_Script.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Bulb_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Bulb_control.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/CPC_Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/CPC_Security.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Check_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Check_Configuration.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Check_and_Restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Check_and_Restart.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Config_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Config_1.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Create_Helper_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Create_Helper_button.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Diagnostic_Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Diagnostic_Config.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Docker_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Docker_Warning.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Entity_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Entity_GUI.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Entity_ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Entity_ID.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/File_Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/File_Editor.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Flash_Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Flash_Map.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Group.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/HA_Webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/HA_Webpage.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Helpers_Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Helpers_Page.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Joining_Network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Joining_Network.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Launcher.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Light_Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Light_Group.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Network_Visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Network_Visualization.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/New_Automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/New_Automation.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Overview.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Project_Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Project_Wizard.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Scene.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Scene_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Scene_Check.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Scenes.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Startup_Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Startup_Config.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Startup_Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Startup_Log.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Startup_Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Startup_Page.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/System_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/System_Overview.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/URL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/URL.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/Welcome_Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/Welcome_Screen.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/YAML_Configuration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/YAML_Configuration1.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/YAML_Configuration2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/YAML_Configuration2.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/YAML_Configuration3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/YAML_Configuration3.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/ZHA_Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/ZHA_Page.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/ZHA_Startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/ZHA_Startup.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/image/ZHA_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/image/ZHA_config.png -------------------------------------------------------------------------------- /zigbee_philips_hue_with_home_assistant_os/src/automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_philips_hue_with_home_assistant_os/src/automation.yaml -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/README.md -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/SimplicityStudio/zigbee_rtc_time_sync.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/SimplicityStudio/zigbee_rtc_time_sync.slcp -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/config/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/config/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/connect_ncp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/connect_ncp.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/create_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/create_device.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/create_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/create_gateway.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/create_minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/create_minimal.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/create_ncp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/create_ncp.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/form_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/form_network.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/hardware.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/join_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/join_network.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/make_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/make_gateway.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/open_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/open_network.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/print_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/print_time.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/query_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/query_time.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/image/time_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/image/time_cluster.png -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/src/end_device/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/src/end_device/app.c -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/src/end_device/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/src/end_device/main.c -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/src/gateway/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/src/gateway/app.c -------------------------------------------------------------------------------- /zigbee_rtc_time_sync/src/gateway/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_rtc_time_sync/src/gateway/main.c -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/README.md -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/SimplicityStudio/zigbee_rht_host.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/SimplicityStudio/zigbee_rht_host.slcp -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/SimplicityStudio/zigbee_rht_sed.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/SimplicityStudio/zigbee_rht_sed.slcp -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/config/zcl/zigbee_rht_host/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/config/zcl/zigbee_rht_host/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/config/zcl/zigbee_rht_sed/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/config/zcl/zigbee_rht_sed/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/Decryption_keys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/Decryption_keys.jpg -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/Keys_print_command_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/Keys_print_command_output.jpg -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/Network_Analyzer_capture_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/Network_Analyzer_capture_example.jpg -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/Network_Analyzer_event_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/Network_Analyzer_event_details.jpg -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/SED_application_output_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/SED_application_output_log.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/SED_button_report_output_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/SED_button_report_output_log.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/app_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/app_diagram.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/create_host_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/create_host_app.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/create_ncp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/create_ncp.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/create_sed_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/create_sed_app.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/docker.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/host_application_output_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/host_application_output_log.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/network_creation_and_info_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/network_creation_and_info_output.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/network_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/network_security.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/project_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/project_folder.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/image/stream_uart_vcom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/image/stream_uart_vcom.png -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/src/zigbee_rht_host/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/src/zigbee_rht_host/app.c -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/src/zigbee_rht_host/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/src/zigbee_rht_host/main.c -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/src/zigbee_rht_sed/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/src/zigbee_rht_sed/app.c -------------------------------------------------------------------------------- /zigbee_sed_rht_sensor/src/zigbee_rht_sed/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_rht_sensor/src/zigbee_rht_sed/main.c -------------------------------------------------------------------------------- /zigbee_sed_z3switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/README.md -------------------------------------------------------------------------------- /zigbee_sed_z3switch/SimplicityStudio/zigbee_sleepy_switch.slcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/SimplicityStudio/zigbee_sleepy_switch.slcp -------------------------------------------------------------------------------- /zigbee_sed_z3switch/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/board_control_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/board_control_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/console_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/console_log.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/create_project.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/debug_print_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/debug_print_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/device_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/device_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/energy_emu_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/energy_emu_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/energy_not_optimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/energy_not_optimize.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/energy_profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/energy_profiler.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/hardware_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/hardware_connection.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/simple_button_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/simple_button_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/watchdog_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/watchdog_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/image/zcl_framework_core_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/image/zcl_framework_core_config.png -------------------------------------------------------------------------------- /zigbee_sed_z3switch/inc/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/inc/app.h -------------------------------------------------------------------------------- /zigbee_sed_z3switch/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/src/app.c -------------------------------------------------------------------------------- /zigbee_sed_z3switch/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_sed_z3switch/src/main.c -------------------------------------------------------------------------------- /zigbee_smart_lighting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/README.md -------------------------------------------------------------------------------- /zigbee_smart_lighting/image/Flow_Steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/image/Flow_Steps.png -------------------------------------------------------------------------------- /zigbee_smart_lighting/image/Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/image/Model.png -------------------------------------------------------------------------------- /zigbee_smart_lighting/image/create_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/image/create_example.png -------------------------------------------------------------------------------- /zigbee_smart_lighting/image/i2c_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/image/i2c_config.png -------------------------------------------------------------------------------- /zigbee_smart_lighting/zigbee_smart_lighting_light/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/zigbee_smart_lighting_light/src/app.c -------------------------------------------------------------------------------- /zigbee_smart_lighting/zigbee_smart_lighting_light/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/zigbee_smart_lighting_light/src/main.c -------------------------------------------------------------------------------- /zigbee_smart_lighting/zigbee_smart_lighting_sensor/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/zigbee_smart_lighting_sensor/src/app.c -------------------------------------------------------------------------------- /zigbee_smart_lighting/zigbee_smart_lighting_sensor/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_smart_lighting/zigbee_smart_lighting_sensor/src/main.c -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/README.md -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/config/zcl/zcl_config.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/config/zcl/zcl_config.zap -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/inc/trust_center_swap_out_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/inc/trust_center_swap_out_callbacks.h -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/inc/trust_center_swap_out_cli_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/inc/trust_center_swap_out_cli_defs.h -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/src/app.c -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/src/main.c -------------------------------------------------------------------------------- /zigbee_soc_coordinator_tcso/src/trust_center_swap_out_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabsSoftware/zigbee_applications/HEAD/zigbee_soc_coordinator_tcso/src/trust_center_swap_out_callbacks.c --------------------------------------------------------------------------------