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

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

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
Designing a Modular Wiring Harness for Multi-Function Veh...
applekoiot · 2026-05-27 · via DEV Community

If you've ever had to maintain firmware for more than 5 GPS tracker SKUs simultaneously, you know the pain. Different pin assignments, different peripherals, different wiring harnesses, different protocol parsers on the platform side.

I've been designing IoT tracking hardware for over 20 years, shipping to 100+ countries. The pattern that finally broke the cycle for us was modular I/O: one base PCB, one connector, swappable wiring harnesses that determine the device's function.

This post walks through how we allocate a 9-pin connector across 6 hardware modules.

The Problem: SKU Sprawl

A typical telematics provider needs hardware for:

  • Basic fleet tracking (GNSS + ACC + relay)
  • Cold chain (temperature/humidity probes)
  • Vehicle security (iButton driver auth + immobilizer)
  • Driver safety (SOS panic button)
  • E-vehicle tracking (48V input)
  • Cargo monitoring (BLE beacon scanning)

In a fixed-function world, that's 6 separate products. Each with its own PCB revision, firmware branch, wiring diagram, and platform integration.

The fleet management market hit $27 billion in 2025 growing at ~17% CAGR. More deployments = more use cases = more SKUs = more pain.

The Solution: 9-Pin Modular Architecture

Reserve fixed pins for universal functions. Dedicate a modular zone for swappable modules.

Pin  Function           Type      Notes
───  ─────────────────  ────────  ──────────────────────────────
 1   Power In (9-48V)   Fixed     Wide voltage, no converter
 2   GND                Fixed     Common ground
 3   ACC Detection      Fixed     Ignition state
 4   Module Pin A       MODULAR   Signal / Data+ / GPIO-1
 5   Module Pin B       MODULAR   GND / Data- / GPIO-2
 6   Module Pin C       MODULAR   Extended I/O (3-wire modules)
 7   Module Pin D       MODULAR   Extended I/O (4-wire modules)
 8   Relay NO           Fixed     Engine cut - normally open
 9   Relay COM          Fixed     Engine cut - common

Enter fullscreen mode Exit fullscreen mode

Pins 1-3 and 8-9 never change. Pins 4-7 are the modular zone — a 4-wire bus that accepts 6 different pre-terminated harnesses.

The Six Modules

Module 1: SOS Button

Pin 4: Button signal (pulled high, active low)
Pin 5: Button GND
Pin 6: NC
Pin 7: NC

Enter fullscreen mode Exit fullscreen mode

Simple momentary switch. Firmware debounces, generates priority alarm with coordinates. Used in taxi and ride-hailing fleets.

Module 2: Backup Battery

Pin 4: Battery V+ (3.7V LiPo)
Pin 5: Battery GND
Pin 6: Charge enable (from base PCB)
Pin 7: NC

Enter fullscreen mode Exit fullscreen mode

2-4 hour backup after main power cut. Critical for anti-theft — if someone disconnects the vehicle battery, the tracker keeps reporting.

Module 3: GPIO Expansion

Pin 4: Digital Input 1 (door sensor, PTO, fuel switch)
Pin 5: Digital Input 1 GND
Pin 6: Digital Input 2
Pin 7: Digital Input 2 GND

Enter fullscreen mode Exit fullscreen mode

Two opto-isolated digital inputs. Turns the tracker into a light telematics controller.

Module 4: iButton / Electronic Key

Pin 4: 1-Wire Data (Dallas protocol)
Pin 5: 1-Wire GND
Pin 6: LED indicator (registered key = green)
Pin 7: LED GND

Enter fullscreen mode Exit fullscreen mode

Driver touches registered iButton to reader. Unregistered key → relay fires → engine immobilized. Used in rental fleets and construction equipment.

Module 5: BLE Gateway

Pin 4: UART TX (from BLE module)
Pin 5: UART RX (to BLE module)
Pin 6: BLE VCC (3.3V regulated from base)
Pin 7: BLE GND

Enter fullscreen mode Exit fullscreen mode

Bluetooth 2.4 GHz scanner. Detects BLE beacons for driver proximity, cargo tags, or environmental sensor beacons inside a reefer.

Module 6: Temperature & Humidity Probe

Pin 4: 1-Wire Data (DS18B20 or similar)
Pin 5: Probe GND
Pin 6: Probe VCC (3.3V)
Pin 7: NC (or second probe data for dual-zone)

Enter fullscreen mode Exit fullscreen mode

Wired external probe. Threshold alarms configured via platform commands. Reports in telemetry stream alongside GPS data.

Power Budget

Here's where it gets real. The base unit + cellular modem + GNSS typically draws 50-80mA active, <5mA sleep. Each module adds:

Module Active (mA) Sleep (mA) Notes
SOS ~0 ~0 Passive switch, no quiescent draw
Battery 0 (net saver) 0 Provides power, doesn't consume
GPIO <1 <0.1 Opto-isolator bias current
iButton <1 <0.5 1-Wire pull-up only
BLE 8-15 <1 Scanning interval dependent
T&H Probe 1-3 <0.5 Sampling interval dependent

BLE is the most power-hungry module. If you're designing for long-interval reporting (e.g., once per hour), the BLE scan window becomes your main power lever. We typically scan for 2 seconds every 30 seconds in normal mode, and extend to 10-second scans only when the accelerometer detects motion.

Firmware Auto-Detection

The firmware needs to know which module is connected without user configuration. Two approaches:

Resistor ID (simple): Each harness includes a resistor divider between Pin 6 and Pin 7 that produces a unique voltage. The MCU reads this ADC value at boot → module type determined.

// Simplified module detection
uint16_t adc_val = read_adc(MODULE_ID_PIN);
if (adc_val < 200) module = MODULE_SOS;
else if (adc_val < 600) module = MODULE_BATTERY;
else if (adc_val < 1000) module = MODULE_GPIO;
else if (adc_val < 1400) module = MODULE_IBUTTON;
else if (adc_val < 1800) module = MODULE_BLE;
else module = MODULE_TEMP_HUMIDITY;

Enter fullscreen mode Exit fullscreen mode

Protocol probe (robust): At boot, firmware sends a query on Pin 4 and checks for expected responses — UART ACK for BLE, 1-Wire presence pulse for iButton/T&H, high impedance for SOS. More robust but takes 200-500ms longer at boot.

We use resistor ID for production and protocol probe as a fallback validation.

Protocol Layer: Module-Aware Packets

Every data packet includes a module_id field so the platform knows which data fields to expect:

{
  "device_id": "TK-0044712",
  "timestamp": "2026-04-16T12:00:00Z",
  "lat": 22.5431,
  "lng": 114.0579,
  "speed_kmh": 45,
  "acc": true,
  "module_id": 6,
  "module_data": {
    "temp_c": 3.2,
    "rh_pct": 68,
    "alarm": null
  }
}

Enter fullscreen mode Exit fullscreen mode

One protocol parser on the platform side. The module_id field tells it which module_data schema to expect. No more maintaining 6 separate device integrations.

Lessons Learned

1. Don't skimp on the modular pin count. We started with 2 modular pins and hit limits immediately with BLE (needs UART TX/RX + power + GND = 4 wires). Four modular pins is the minimum for a useful modular zone.

2. Wide voltage (9-48V) is non-negotiable. The moment you limit to 12-24V, you lose e-scooter, golf cart, and forklift markets. Those are growing fast.

3. Relay with safety interlock. A remote engine cut that activates at highway speed is a liability nightmare. Implement a speed gate (e.g., >20 km/h = queue the cut, execute only when speed drops below threshold).

What's Your Approach?

I'm curious how others are handling multi-function tracker design. Are you using modular connectors, or still maintaining separate SKUs? Have you tried hot-swappable modules (detect changes without reboot)?

If you're working on similar hardware architecture problems, I'd be happy to compare notes.


This article was written with AI assistance for research and drafting. The architecture recommendations are based on 20+ years of IoT vehicle tracker design experience.