<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: thingslog</title>
    <description>The latest articles on DEV Community by thingslog (@thingslog).</description>
    <link>https://dev.to/thingslog</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3886538%2F2afd4f1c-8aac-428c-a9b5-8e1efde12e01.jpg</url>
      <title>DEV Community: thingslog</title>
      <link>https://dev.to/thingslog</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thingslog"/>
    <language>en</language>
    <item>
      <title>Low-Power IoT in the Military Domain: Architecture, Standards, Coatings, and Field Results</title>
      <dc:creator>thingslog</dc:creator>
      <pubDate>Sat, 18 Apr 2026 20:24:09 +0000</pubDate>
      <link>https://dev.to/thingslog/low-power-iot-in-the-military-domain-architecture-standards-coatings-and-field-results-5bh4</link>
      <guid>https://dev.to/thingslog/low-power-iot-in-the-military-domain-architecture-standards-coatings-and-field-results-5bh4</guid>
      <description>&lt;p&gt;Two active military operations are running simultaneously right now, and both are producing a very visible lesson for embedded engineers: the ability to build electronics that operate for months or years on a small battery — without maintenance, without infrastructure — has become a defining characteristic of effective military sensing.&lt;/p&gt;

&lt;p&gt;We just finished a 10-post research series on this topic. Here is the condensed version for people who want the engineering substance without wading through 10 articles.&lt;/p&gt;




&lt;h2&gt;
  
  
  The core architecture: hierarchical power domains
&lt;/h2&gt;

&lt;p&gt;Every ultra-low-power military sensor node — unattended ground sensor, LoRa tactical tracker, soldier-worn biometric node — is built around the same fundamental pattern:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Always-on domain       ~100–500 nA
  └─ wake-up comparator, RTC, PMIC

Intermittent domain    µA range, ms duration
  └─ MCU + ADC + sensor acquisition

On-demand domain       mA range, 100–2000 ms
  └─ LoRa TX, GNSS, camera
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The always-on domain gates the intermittent domain via hardware interrupt. The intermittent domain gates the on-demand domain only when there is a decision to transmit. Nothing higher in the stack is ever left drawing quiescent current.&lt;/p&gt;

&lt;p&gt;This is not novel — but it is the discipline that separates a node that lasts 3 years from one that lasts 3 weeks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Practical tip:&lt;/strong&gt; The STM32WL (first LoRa-on-chip SoC) in deep sleep draws ~1 µA. Add a TPL5110 nano-timer (35 nA) and cut power to the STM32WL entirely between events — you drop system standby to the nano-timer floor. At 35 nA from a 3000 mAh AA lithium cell, theoretical standby lifetime exceeds 9 years.&lt;/p&gt;




&lt;h2&gt;
  
  
  The DARPA N-ZERO result is the benchmark
&lt;/h2&gt;

&lt;p&gt;DARPA's &lt;a href="https://www.darpa.mil/research/programs/near-zero-rf-and-sensor-operations" rel="noopener noreferrer"&gt;N-ZERO programme&lt;/a&gt; (2015–2020) set the standard everyone in military sensing is now measured against:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Before N-ZERO:&lt;/strong&gt; unattended ground sensor lifetime = weeks to months&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;After N-ZERO:&lt;/strong&gt; up to &lt;strong&gt;4 years on a coin cell&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Battery size reduction:&lt;/strong&gt; 20× for equivalent lifetime&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The mechanism: MEMS-based conditional wake-up receivers that exploit the energy of the incoming signal (acoustic, seismic, RF) to trigger the electronics — rather than running active electronics to wait for a signal. Zero standby power because the wake-up path is passive analog hardware, not running firmware.&lt;/p&gt;

&lt;p&gt;Lesson for commercial IoT: the same principle applies. If your event is infrequent, a hardware comparator at 10 nA will always beat a microcontroller polling at 1 mA — by a factor of 100,000.&lt;/p&gt;




&lt;h2&gt;
  
  
  LoRa in military tactical applications: what the research shows
&lt;/h2&gt;

&lt;p&gt;Four IEEE papers track the trajectory from 2017 to 2025:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2017&lt;/strong&gt; — U-LoRa at 433 MHz for soldier tracking: 5 km range in open terrain, 2 km in forest, &lt;strong&gt;&amp;lt;1 mA average draw&lt;/strong&gt;, full node BOM under $15. The 433 MHz choice (vs 868/915) was deliberate — better foliage penetration for infantry in woodland.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2018&lt;/strong&gt; — LoRaWAN evaluation for tactical military use: suitable for logistics tracking and environmental sensing; &lt;strong&gt;not&lt;/strong&gt; suitable for real-time sub-second latency requirements under standard LoRaWAN Class A. Conclusion: use the LoRa physical layer with a custom MAC, not LoRaWAN's civilian protocol stack.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2019&lt;/strong&gt; — Cyber perspective: LoRa's chirp spread-spectrum achieves negative SNR reception (−20 dB at SF12), making signals difficult to detect passively. Narrowband jamming is less effective. But standard AES-128 LoRaWAN keys are insufficient for anything above unclassified — add a hardware secure element (ATECC608B or equivalent) and application-layer AES-256.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2025&lt;/strong&gt; — Complete tactical system: LoRa nodes + mobile gateway + encrypted messaging + store-and-forward when backhaul is unavailable. The store-and-forward piece is the one that makes it viable in denied comms environments.&lt;/p&gt;




&lt;h2&gt;
  
  
  Our own field data: Antarctica
&lt;/h2&gt;

&lt;p&gt;We deployed ThingsLog &lt;a href="https://thingslog.com/blog/2026/03/07/low-power-iot-monitoring-antarctica/" rel="noopener noreferrer"&gt;LPMDL-1105&lt;/a&gt; loggers at the Bulgarian Antarctic Base — a seasonally unoccupied research facility on Livingston Island — for the polar winter of 2024.&lt;/p&gt;

&lt;p&gt;The constraint set maps almost exactly to a military unattended sensor network:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Antarctic constraint&lt;/th&gt;
&lt;th&gt;Military equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;No mains power, no solar&lt;/td&gt;
&lt;td&gt;Denied environment, no resupply&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7 months no maintenance access&lt;/td&gt;
&lt;td&gt;Multi-year UGS deployment&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Intermittent Starlink only&lt;/td&gt;
&lt;td&gt;Degraded comms environment&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;−28 °C outdoor&lt;/td&gt;
&lt;td&gt;Arctic theatre&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;No personnel&lt;/td&gt;
&lt;td&gt;Unattended operation&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Architecture:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sensors acquire 4 channels every 15 minutes → stored to local flash&lt;/li&gt;
&lt;li&gt;96 readings (24h) buffered per node&lt;/li&gt;
&lt;li&gt;Once per day: LoRa gateway powers on, collects all nodes, Starlink terminal powers on, uploads to cloud&lt;/li&gt;
&lt;li&gt;Gateway and Starlink return to powered-off state&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Radio config:&lt;/strong&gt; SF8 fixed, ADR disabled. Reason: we needed to fit 96 readings into a single payload per daily window. SF8 with our binary protocol fit the payload; SF7 ADR would have dropped us below the required capacity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Result:&lt;/strong&gt; Full winter dataset, zero permanent data loss, no maintenance interventions.&lt;/p&gt;

&lt;p&gt;The paper: &lt;em&gt;"Deployment of a Low-Power LoRa-Based Monitoring Network for Environmental and Building Condition Assessment in Antarctica"&lt;/em&gt;, IEEE CompSysTech 2025.&lt;/p&gt;




&lt;h2&gt;
  
  
  Protective coatings: the part most IoT engineers skip
&lt;/h2&gt;

&lt;p&gt;This is where field deployments actually fail. The five coating types under MIL-I-46058C / IPC-CC-830:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Code&lt;/th&gt;
&lt;th&gt;Reworkable&lt;/th&gt;
&lt;th&gt;Temp range&lt;/th&gt;
&lt;th&gt;Best for&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Acrylic&lt;/td&gt;
&lt;td&gt;AR&lt;/td&gt;
&lt;td&gt;Yes (solvents)&lt;/td&gt;
&lt;td&gt;−65 to +125 °C&lt;/td&gt;
&lt;td&gt;General purpose&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Urethane&lt;/td&gt;
&lt;td&gt;UR&lt;/td&gt;
&lt;td&gt;With effort&lt;/td&gt;
&lt;td&gt;−65 to +125 °C&lt;/td&gt;
&lt;td&gt;Fuel/chemical exposure&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Epoxy&lt;/td&gt;
&lt;td&gt;ER&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;−65 to +150 °C&lt;/td&gt;
&lt;td&gt;Potting, permanent installs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Silicone&lt;/td&gt;
&lt;td&gt;SR&lt;/td&gt;
&lt;td&gt;Difficult&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;−65 to +200 °C&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Extreme thermal cycling&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Parylene&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;XY&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;No (CVD)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;−200 to +125 °C&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Mission-critical, miniature, marine&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Parylene is deposited by chemical vapour in a vacuum chamber at room temperature — it penetrates gaps as small as 0.01 mm, is pinhole-free at 0.5 µm, and passes 144-hour salt spray (MIL-STD-810F). It's on the DoD Qualified Products List under MIL-I-46058C.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The low-power angle nobody mentions:&lt;/strong&gt; on an uncoated PCB in a humid environment, surface leakage between adjacent conductors can reach 1–100 µA. If your sleep budget is 300 nA, that leakage is 3–300× your entire power budget. Parylene's moisture barrier eliminates this.&lt;/p&gt;




&lt;h2&gt;
  
  
  Standards you actually need to know
&lt;/h2&gt;

&lt;p&gt;If you're building for NATO or US DoD procurement, these are the ones that matter:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Environmental:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MIL-STD-810H — the US reference. Not a rating system — a test method library. You select which methods apply based on the platform life cycle.&lt;/li&gt;
&lt;li&gt;STANAG 4370 / AECTP-200/400/500 — the NATO equivalent. AECTP-200 for climatic, AECTP-400 for mechanical, AECTP-500 for EMC.&lt;/li&gt;
&lt;li&gt;DEF STAN 00-35 — UK MoD. Broadly equivalent to MIL-STD-810H with UK platform tailoring data.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;EMC:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MIL-STD-461G — US. CE102/RE102 for emissions, CS116/RS103 for susceptibility.&lt;/li&gt;
&lt;li&gt;AECTP-500 — NATO equivalent.&lt;/li&gt;
&lt;li&gt;DEF STAN 59-411 — UK equivalent.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Power:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MIL-STD-1275E — 28V DC vehicle bus. Your power supply must survive load dumps to 100V, cold-crank dips to 9V, and reverse polarity to −18V indefinitely.&lt;/li&gt;
&lt;li&gt;MIL-STD-704F — aircraft 28V DC / 115V AC.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Components:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MIL-PRF-38535 Rev N (Feb 2026) — military IC qualification. Class G (COTS-screened, −40 to +85 °C) is the practical entry point for tactical IoT nodes.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Ingress:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IEC 60529 IP67 minimum for dismounted infantry equipment. IP68 for buried sensors. IP69K for CBRN decontamination zones.&lt;/li&gt;
&lt;li&gt;MIL-STD-810H Method 512 (1 m / 30 min) ≈ IP67. Dual-certify both in one test campaign.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The full series
&lt;/h2&gt;

&lt;p&gt;If any section above is relevant to what you're building, the full posts are on the ThingsLog blog:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/why-low-power-electronics-are-reshaping-modern-military-operations/" rel="noopener noreferrer"&gt;Why Low Power Matters in Military Operations&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/key-application-domains-low-power-electronics-military/" rel="noopener noreferrer"&gt;Key Application Domains: UGS, IoBT, LoRa, Wearables, UAVs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/how-military-low-power-electronics-are-built/" rel="noopener noreferrer"&gt;How Military Low-Power Electronics Are Built&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/protective-coatings-military-electronics/" rel="noopener noreferrer"&gt;Protective Coatings: Parylene, Silicone, Epoxy, Potting&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/military-electronics-standards-mil-std-nato-stanag-def-stan/" rel="noopener noreferrer"&gt;Standards: MIL-STD, NATO STANAG, DEF STAN&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/ip-ratings-mil-std-810-military-ingress-protection-water-dust/" rel="noopener noreferrer"&gt;IP Ratings and Ingress Protection&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/case-study-darpa-n-zero-near-zero-power-battlefield-sensors/" rel="noopener noreferrer"&gt;Case Study: DARPA N-ZERO&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/case-study-lora-tactical-troop-tracking-low-power-military-sensor/" rel="noopener noreferrer"&gt;Case Study: LoRa Tactical Troop Tracking&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/case-study-thingslog-lpmdl-antarctica-low-power-iot-military/" rel="noopener noreferrer"&gt;Case Study: ThingsLog LPMDL in Antarctica&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://thingslog.com/blog/military/case-study-army-combatconnect-soldier-power-wearable-electronics/" rel="noopener noreferrer"&gt;Case Study: Army CombatConnect&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Happy to go deeper on any of the architecture, protocol, or standards topics in the comments.&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>iot</category>
      <category>networking</category>
      <category>systemdesign</category>
    </item>
  </channel>
</rss>
