Build your own
IoT logic.

Industrial-grade hardware. MicroPython runtime.
Your code. Your rules. Deployed over the air.

main.py — Logger Pro
# RS485 temperature monitoring
from findylab import modem, findyIoT, sensor
 
modem.turnOn()
findyIoT.connect()
 
temp = sensor.measure('rs485', address=1)
if temp < 10:
  findyIoT.report([223, 231])
prepareSleep(3600)
4Devices
IP67Industrial grade
LTE Cat 1 bis+ 2G · global SIM
MicroPythonRuntime
OTAOver-the-air updates
€25/yrSIM + platform
Three steps to your IoT product
1

Choose hardware

Pick the device that matches your IO requirements — RS485, 4-20mA, GPS, relays and more.

2

Write your logic

Use our MicroPython API to define what gets measured, when it reports, and how it responds.

3

See your data

The platform shows your Measurements, Settings and Commands — auto-generated from your config.

Not sure which device you need?

Describe your project in plain language. Our AI will recommend the right hardware and show you example code.

RS485 temperature monitoring Solar-powered water level Remote relay control 4-20mA pressure sensor
Choose your device

* hardware fitted, findy Lab API coming.

View all hardware & comparison table →
examples/rs485-modbus.py
# Modbus RS485 relay control
from findylab import modem, findyIoT
from modbus import RS485Device
 
plc = RS485Device(address=1)
pressure = plc.read_register(0x0001)
flow = plc.read_register(0x0002)
 
if pressure > 8.5:
  plc.write_coil(0x0010, False)
 
findyIoT.report([101, 102])
prepareSleep(300)

Copy, adapt, deploy

Every example includes a full hardware list with links, wiring diagram, MicroPython code, platform dashboard screenshot and video tutorial.

Browse all 10 examples →

Can't build it yourself?

Our enterprise team at findyiot.com builds complete IoT solutions — the same hardware, plus connectivity, platform, custom development and SLA support. From pilot to mass production.

Join the findy Lab community

Developers building real IoT projects with findy hardware. Share projects, get help, contribute examples.