arduinos

collection of Arduino code for Atmega, ESP8266 to control LED light, motion sensor, simple control terminal, power meter

View on GitHub

Arduino codes, schematics of the following projects:

1. powerMeter_v1:

portable power meter using INA219 current sensor, powered by Lithium batter and loging data to SD card (Credit to GreatScott Lab)

2. powerMeter_v2:

power meter using INA219 and 18B20 temperature probe, Nokia 5110 screen, and log data to a computer via Serial communication by a python script

3. powerMeter_v2.1:

tools for LED evaluation: based v2 power meter, added TLS2561 luminosity sensor and photocell, log data via Serial by python script

4. simpleControlTerminal:

a simple NTP clock with a terminal to publish analog reading to MQTT server, can publish to 4 seperated channels using WeMOS Mini-Lite ESP8266, SSD1306 OLED. A more details on making a subscriber-publisher with MQTT server on instructables.com

5. dimmerPir:

control 4x3W LED by motiion sensor or with MQTT with Json format, intensity is parsed out by the controller, or it can be turned on by a switch, using ESP8266 -01. The current is limited by a MOSFET, a transitor and 1ohm (3W), allows about 600 mA through LEDS as the max output. LEDs is automatically turned on with PIR sensor or with publish message from MQTT server

6. 8 LEDs Dimmer

Boost 5V input to 26V using MT3608 and turn on 10LEDs (0.5W each, 8mm superbright). The brightness is controlled by 8266 esp01 using JSON message from MQTT server, or a manual push button. The current runs through the LEDs is limited by MOSFET and a transitor with 4ohm (about 150mA max).

7. MQTT, PIR sensor, LEDs, SQLite with a web server

A full set up using PIR sensor to detect infrared movement, publish the status to a topic by MQTT broker. Several type of clients (subsribers) can listen in such as LED light, collect data by a SQLite database. The tutorial is posted instructables.com

Schematics

1. powerMeter_v1

2. powerMeter_v2:

3. powerMeter_v2.1:

4. Simple Terminal with NTP Clock and Publish Control Value

5. PIR and LED dimmer

6. 8 LEDs and 5V supply

7. MQTT, PIR sensor, LEDs, SQLite with a web server

A basic concept:

to be added…