PoE Shield¶
The PoE Shield adds 802.3af Power-over-Ethernet to OpenMV Cams that have an on-board Ethernet PHY — one cable to a PoE switch carries both power and the network link.
For full datasheet, photos, and ordering see the PoE Shield product page.
Note
Supported only on the OpenMV Cam RT1062 and N6.
Highlights¶
10/100 Mb/s Ethernet with IEEE 802.3af PoE
Up to 5.67 W to the camera via 5.4 V VIN
1500 V isolated design — stacks with dual-header shields
Pinout¶
Pin reference¶
Pin |
Function |
|---|---|
MDI LED |
PHY link / activity LED line |
MDI TX P |
MDI TX+ — transmit pair positive |
MDI TX N |
MDI TX− — transmit pair negative |
MDI RX P |
MDI RX+ — receive pair positive |
MDI RX N |
MDI RX− — receive pair negative |
VIN out |
5.4 V at up to ~1 A from the on-board PoE regulator (powers the camera) |
3.3V rail |
Powers the shield’s on-board electronics |
GND rail |
Common ground |
Usage¶
When the shield is connected to a PoE switch, the camera’s 10/100
Ethernet PHY appears as a network.LAN interface. DHCP runs
automatically once the link comes up:
import network
import time
lan = network.LAN()
lan.active(True)
while not lan.isconnected():
time.sleep(1)
print("Ethernet IP:", lan.ipconfig("addr4")[0])