diff --git a/examples/esp-now_bridge_light/README.md b/examples/esp-now_bridge_light/README.md
index 2047174f4..c888123f4 100644
--- a/examples/esp-now_bridge_light/README.md
+++ b/examples/esp-now_bridge_light/README.md
@@ -6,6 +6,10 @@ In the ESP-NOW part, it acts as a responder whereas a ESP-NOW switch is an initi
In the Matter part, it creates a Color Temperature Light device and an aggregator device using the ESP Matter data model. When binding with an ESP-NOW switch is complete, it also creates a dynamic OnOff Switch device that works like a normal Matter switch. When unbind from the ESP-NOW switch, the dynamic switch device is removed.
+This diagram gives a simplistic view of the data models involved in the interaction.
+
+
+
See the [docs](https://docs.espressif.com/projects/esp-matter/en/main/esp32/developing.html) for more information about building and flashing the firmware.
## 1. Additional Environment Setup
diff --git a/examples/esp-now_bridge_light/docs/esp-now-bridge-datamodel.drawio.svg b/examples/esp-now_bridge_light/docs/esp-now-bridge-datamodel.drawio.svg
new file mode 100644
index 000000000..06d766d76
--- /dev/null
+++ b/examples/esp-now_bridge_light/docs/esp-now-bridge-datamodel.drawio.svg
@@ -0,0 +1,401 @@
+
\ No newline at end of file
diff --git a/examples/esp-now_bridge_light/docs/esp-now-bridge-overall.drawio.svg b/examples/esp-now_bridge_light/docs/esp-now-bridge-overall.drawio.svg
new file mode 100644
index 000000000..be79efc0d
--- /dev/null
+++ b/examples/esp-now_bridge_light/docs/esp-now-bridge-overall.drawio.svg
@@ -0,0 +1,136 @@
+
\ No newline at end of file
diff --git a/examples/esp-now_bridge_light/docs/esp-now-bridge-with-button.md b/examples/esp-now_bridge_light/docs/esp-now-bridge-with-button.md
index e51a166dc..a3c40ea60 100644
--- a/examples/esp-now_bridge_light/docs/esp-now-bridge-with-button.md
+++ b/examples/esp-now_bridge_light/docs/esp-now-bridge-with-button.md
@@ -2,7 +2,19 @@
## Overview
-This application note describes the application of controlling the ESP-NOW Matter bridge using the ESP-NOW coin cell button, focusing on the power saving aspect of the application. Please refer to this [Application Note](https://github.com/espressif/esp-now/tree/master/examples/coin_cell_demo/switch/docs/button_in_matter_bridging.md) for the coin cell button part of the application note. For general ESP-NOW bridge application description, please refer to the [README](../README.md).
+This document outlines the application of controlling the ESP-NOW Matter bridge through the use of ESP-NOW coin cell button. Please refer to this [Application Note](https://github.com/espressif/esp-now/tree/master/examples/coin_cell_demo/switch/docs/button_in_matter_bridging.md) for the coin cell button part of the application note. For general ESP-NOW bridge application description, please refer to the [README](../README.md).
+
+## Data Models
+
+The diagram below gives an overview of the interactions between various devices in this application.
+
+
+
+This diagram gives a simplistic view of the data models involved in the interaction.
+
+
+
+The coin cell button binds to the ESP-NOW Matter bridge so that it is able to send ESP-NOW controls to the bridge, then the bridge controls the Matter light through ONOFF Cluster.
## Power Saving