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

推荐订阅源

V
Visual Studio Blog
爱范儿
爱范儿
GbyAI
GbyAI
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
C
Check Point Blog
H
Help Net Security
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Y
Y Combinator Blog
U
Unit 42
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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
I Put a Neural Network in a Thermometer — Then It Got Out...
Alex Rosito · 2026-05-25 · via DEV Community

How it all started

About three years ago my wife asked me: "Honey, what do you think the temperature is today?"

I told her to check her phone. She gave me a look and said, "No — in here. In the apartment."

The next day I remembered we had a clock with a built-in thermometer somewhere. Found it, put batteries in it, problem solved. But I couldn't stop thinking: how do digital thermometers actually work? Temperature is continuous — how does a microcontroller read it?

That question sent me down a rabbit hole. I learned about thermistors. Then about Wheatstone bridges. Then about instrumentation amplifiers. A few weeks later I had a thermometer built around a thermistor, an AD620, and an ATtiny85 — a chip with 8KB of flash and no business running anything sophisticated.

The ATtiny85 reads the output of the analog front end, normalizes it (Vout/Vcc), and maps it to temperature. The thermistor follows the Steinhart-Hart equation, which is nonlinear. I modeled the full hardware system mathematically, generated synthetic data from the thermistor's datasheet, and fit a third-degree polynomial to the transfer curve. Good correlation. The thermometer worked well for years.


Fast forward to a stretch with no projects on the bench. I decided to shake off some rust and look into AI. I started with theory, implemented a perceptron from scratch — I still have the perceptron.cpp from when this started — and kept going. What started as an academic exercise, understanding the mechanics behind neural networks, writing the code from scratch, ended up producing something I hadn't planned for: a tool. And once I had the tool, I remembered the thermometer.

What if I replaced the polynomial correction function with a neural network? I trained a small network on the same synthetic dataset, exported a C header, dropped it into the ATtiny85 firmware, and replaced the three-line polynomial with a single predict() call.

It worked.

What struck me wasn't just that it worked — it was what it meant. I had just run inference on a microcontroller that was never designed for it. An ATtiny85, sitting at the bottom of a parts drawer, running AI.

That experiment didn't stay small for long.


Over the following months it evolved into something more deliberate. I needed something that would train on the desktop and export a completely self-contained C header — no runtime, no framework, no dependencies on the other side. Just weights and a predict() function that compiles with any C99 toolchain.

#include "model.h"

float input[2]  = { 1.0f, 0.0f };
float output[1];

predict(input, output);

That's the entire deployment story. The firmware doesn't know Hasaki exists.

I called it Hasaki — 刃先 in Japanese, meaning the cutting edge of a blade. Because it runs on edge hardware. And because it's designed to be sharp and minimal.


What Hasaki does

Hasaki trains fully-connected feedforward networks and exports them as standalone C headers. Float, INT8, or INT4 quantization. The workflow is three commands:

# Train
hasaki -d 2,4,1 -act sigmoid,sigmoid -a train \
       -f examples/xor.csv -e 500 -l 0.1 -o model.txt

# Validate
hasaki -d 2,4,1 -act sigmoid,sigmoid -a validate \
       -f examples/xor.csv -m model.txt

# Export
hasaki -d 2,4,1 -act sigmoid,sigmoid -a export \
       -m model.txt -o model.h -q float

No cloud. No SDK account. No subscription. If it compiles for your target, it runs.

The free edition handles up to 2 hidden layers, 64 neurons per layer, and float export — enough for sensor correction, simple classifiers, and prototyping. The Pro edition removes those limits and adds Adam optimizer, dropout, L2 regularisation, and INT8/INT4 quantization for tighter memory budgets.


The MNIST demo

To test whether the claim held up beyond a thermistor, I trained a 784→64→10 network on MNIST and deployed it on an ESP32-C3 Super Mini — one of the smallest, cheapest MCUs available. The exported INT8 header is 212KB. The ESP32-C3 has 400KB of SRAM. It fits.

No TensorFlow Lite. No ML runtime of any kind. The ESP32-C3 serves a web canvas where you draw a digit, and it classifies it — inference running entirely on the chip, from a C header.

The full project is at: https://github.com/AlexRosito67/hasaki-mnist-esp32


What it isn't

Hasaki handles fully-connected feedforward networks. No convolutions, no attention, no recurrent layers. If your problem needs those, this is the wrong tool.

It's also not a research platform. The quantization is static. The training is solid for small networks. For serious production deployments with certification requirements, you need TFLite Micro, Edge Impulse, or NanoEdge AI.

But for the microcontrollers at the bottom of the drawer — the ones that were never meant to run inference, are available by the thousands, and cost less than a cup of coffee — Hasaki is a reasonable place to start.

All of this just because my wife just wanted to know the temperature in the apartment.


Hasaki Free is on GitHub: https://github.com/AlexRosito67/hasaki