惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
A
About on SuperTechFans
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
罗磊的独立博客
量子位
有赞技术团队
有赞技术团队
V
V2EX
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Network Transformer Selection for IoT Ethernet: PHY Compa...
Mia · 2026-06-22 · via DEV Community

Mia

IoT Ethernet designs have different transformer requirements than standard networking equipment. Here's the complete technical reference for IoT-specific selection.
IoT vs Standard Ethernet: Key Differences
Parameter Standard Ethernet Equipment IoT Device
──────────────────────────────────────────────────────────────────────
Power budget Not constrained Milliwatt-level concern
Operating temp 0°C to +70°C (commercial) -40°C to +85°C (industrial)
PCB footprint Flexible Compact — often <50×50mm
Package preference Either SMD or THT SMD, smallest available
PoE usage Optional Common (cable powers sensor)
PHY type Full-featured Low-power (LAN8720A, W5500)
EEE support Common Mandatory for battery designs
BOM cost Secondary Critical (high volume)
MOQ requirement High volume Small batch (50–500 pcs)
Common IoT PHY Chips and Transformer Requirements
pythoniot_phy_transformer_requirements = {
"Microchip LAN8720A": {
"interface": "RMII",
"supply": "3.3V",
"speed": "10/100BASE-TX",
"OCL_min": "350µH @ 100kHz",
"turns_ratio": "1CT:1CT",
"EEE": True,
"notes": "Most popular IoT PHY; STM32 + LAN8720A is dominant combo"
},
"WIZnet W5500": {
"interface": "SPI (TCP/IP offload)",
"supply": "3.3V",
"speed": "10/100BASE-TX",
"OCL_min": "350µH @ 100kHz",
"turns_ratio": "1CT:1CT",
"EEE": False,
"notes": "SPI Ethernet — still needs external magnetics"
},
"TI DP83822": {
"interface": "MII/RMII",
"supply": "3.3V",
"speed": "10/100BASE-TX",
"OCL_min": "350µH @ 100kHz",
"turns_ratio": "1CT:1CT",
"EEE": True,
"notes": "Industrial grade, -40°C support"
},
"Realtek RTL8201": {
"interface": "MII/RMII",
"supply": "3.3V",
"speed": "10/100BASE-TX",
"OCL_min": "350µH @ 100kHz",
"turns_ratio": "1CT:1CT",
"EEE": True,
"notes": "Cost-optimized; high-volume IoT gateways"
}
}
Energy Efficient Ethernet (EEE / 802.3az) Impact
Normal operation: Continuous signal → transformer operates at nominal OCL
LPI (Low Power Idle): Near-zero signal activity → transformer core idles

Potential issue:
Some transformers show insertion loss spike after LPI wake-up
Core operating point must re-establish after idle period
First 1–5ms after wake: elevated insertion loss → packet errors

Verification:
Test with PHY in EEE mode at maximum LPI duration
Monitor first-packet error rate after wake-up
Compare transformers if issue found — core material matters
Temperature vs OCL: What to Verify
OCL specification must be guaranteed at operating temperature extremes:

Temperature Ferrite µr OCL impact
──────────────────────────────────────────────
-40°C Reduced OCL may drop 10–30%
+25°C Nominal Datasheet reference point
+85°C Reduced OCL may drop 5–15% (varies by grade)

⚠️ "350µH at 25°C" is NOT the same as "350µH across -40°C to +85°C"
Request temperature-characterized OCL curves for industrial IoT
IoT PoE Power Dissipation
python# PoE 802.3af power budget in IoT transformer
poe_current = 0.350 # A (802.3af max)
dcr_per_winding = 0.5 # Ω typical

10/100BASE-TX: 2 winding pairs (4 windings total)

total_dissipation = (poe_current**2) * dcr_per_winding * 4
print(f"PoE 802.3af transformer dissipation: {total_dissipation*1000:.1f} mW")

Output: 245.0 mW ← significant in compact IoT enclosure

For 0.3Ω DCR (low-power variant):

dcr_low = 0.3
total_low = (poe_current**2) * dcr_low * 4
print(f"Low-DCR variant dissipation: {total_low*1000:.1f} mW")

Output: 147.0 mW ← 40% reduction

IoT Transformer Selection Checklist
[ ] PHY reference schematic reviewed — transformer spec confirmed
[ ] OCL ≥ 350µH guaranteed across -40°C to +85°C (industrial)
[ ] SMD package ≤ 8×8mm footprint (compact IoT board)
[ ] DCR minimized (low-power variant if available)
[ ] EEE/LPI compatibility verified with PHY
[ ] PoE-rated if design receives or sources PoE power
[ ] 1500V AC isolation (IEEE 802.3 minimum, check for industrial uplift)
[ ] Supplier supports small MOQ (50–500 pcs for prototype/NPI)
Source
Voohu Technology (www.voohuele.com) — IoT-grade network transformers: compact SMD, -40°C to +85°C, PoE-rated options. MOQ 50pcs, DHL 3–5 days to Japan/Korea/Southeast Asia.