#include "Device.h"
/*
Cia Steel Faucet
This sketch controls a smart faucet using an ultrasonic distance sensor,
a relay module to control the water valve, and an LED indicator.
The circuit:
* Ultrasonic sensor connected to pins 5 (trigger) and 18 (echo)
* Relay module connected to pin 4
* LED connected to pin
Created 8 November 2024
By Claudio Moreno
*/
Device device;
void setup() {
device.setup();
}
void loop() {
device.loop();
}