diff --git a/content/tutorials/all/PoE.md b/content/tutorials/all/PoE.md
index cfff439..32e04a3 100644
--- a/content/tutorials/all/PoE.md
+++ b/content/tutorials/all/PoE.md
@@ -14,7 +14,7 @@ The PyEthernet module offers an optional onboard Power over Ethernet (PoE) power
WARNING: Before you use the PoE adapter for the first time, please make sure you read and follow the below instructions as failure to do so might damanage your devices!
{{% /hint %}}
-The PoE power supply integrated in the PyEthernet module has no galvanic isolation. This means that in accordance with
+The PoE power supply integrated in the PyEthernet module with UPC code 604565285911 has no galvanic isolation. This means that in accordance with
IEEE 802.3-2005 standard, you must NOT connect any other devices / cables / chargers if the GND connection is connected to mains earth!
This is typically the case with PCs, Oscilloscopes, Logic Analysers, current consumption measurement devices etc.
@@ -25,42 +25,70 @@ A battery can be connected to the PyGate without issues. The battery can be char
Setup Options
-
+ Power over Ethernet
+
+
+
+
-
- | Connectivity option |
- Power over Ethernet |
- Power over USB-C / external supply |
-
| USB-C cable connected to a PC with mains ground protection |
- NOT OK |
- OK |
-
+ NOT OK |
+
| USB-C cable connected to a Notebook without mains ground protection |
- OK |
- OK |
-
+ OK |
+
| USB-C charger with mains ground protection |
- NOT OK |
- OK |
-
+ NOT OK |
+
| USB-C charger without mains ground protection |
- OK |
- OK |
-
+ OK |
+
| Oscilloscope / Logic Analyser / Other equipment with mains ground protection |
- NOT OK |
- OK |
-
+ NOT OK |
+
| Battery |
- OK |
- OK |
-
+ OK |
+
+
+
+
+ Power over USB-C or external supply
+
+
+
+
+
+ | USB-C cable connected to a PC with mains ground protection |
+ OK |
+
+
+ | USB-C cable connected to a Notebook without mains ground protection |
+ OK |
+
+
+ | USB-C charger with mains ground protection |
+ OK |
+
+
+ | USB-C charger without mains ground protection |
+ OK |
+
+
+ | Oscilloscope / Logic Analyser / Other equipment with mains ground protection |
+ OK |
+
+
+ | Battery |
+ OK |
+
+
+
+
diff --git a/static/gitbook/assets/poe-ni-warn1.png b/static/gitbook/assets/poe-ni-warn1.png
new file mode 100644
index 0000000..3bbcea4
Binary files /dev/null and b/static/gitbook/assets/poe-ni-warn1.png differ
diff --git a/static/gitbook/assets/poe-ni-warn2.png b/static/gitbook/assets/poe-ni-warn2.png
new file mode 100644
index 0000000..cfcf6ec
Binary files /dev/null and b/static/gitbook/assets/poe-ni-warn2.png differ
diff --git a/themes/doc-theme/static/css/doc-theme.css b/themes/doc-theme/static/css/doc-theme.css
index abd204d..1069263 100644
--- a/themes/doc-theme/static/css/doc-theme.css
+++ b/themes/doc-theme/static/css/doc-theme.css
@@ -359,3 +359,28 @@ img[src="/gitbook/assets/pybytes/lora/ttn_logo.svg"]{
img[src*="/gitbook/assets/pybytes/pymesh/"]{
width: 70%;
}
+
+/* PoE table */
+.poe-table {
+ width:80%;
+ display:table;
+ font-weight: 600;
+}
+
+table.poe td:nth-child(1){
+ font-weight: 400;
+}
+
+table.poe td:nth-child(2){
+ text-align:center;
+ font-weight: 600;
+ width:100px;
+}
+
+table.poe .poe-red {
+ background-color: #EF9A9A !important;
+}
+
+table.poe .poe-green {
+ background-color: #c5eee3 !important;
+}