-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBareMinimum.ino
38 lines (34 loc) · 921 Bytes
/
BareMinimum.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "voltage_reader/VoltageReader.h"
#include "potentiometer/Potentiometer.h"
#include "rgb_simple/RgbSimple.h"
#include "photoresistor/Photoresistor.h"
#include "push_buttons/PushButton.h"
#include "servo/ServoSimple.h"
#include "joystick_simple/JoystickSimple.h"
#include "stepper_motor/StepperMotor.h"
#include "dc_motor/DCMotor.h"
#include "parallel_shift_register/PSR.h"
#include "lcd_display/LcdDisplay.h"
#include "dht_sensor/DhtSensor.h"
#include "hc_sensor/HcSensor.h"
#include "ir_remote/MyIRRemote.h"
VoltageReader voltageReader;
Potentiometer potentiometer;
RgbSimple rgbSimple;
Photoresistor photoresistor;
PushButton pushButton;
ServoSimple servoSimple;
JoystickSimple joystickSimple;
StepperMotor stepperMotor;
DCMotor dcMotor;
PSR psr;
LcdDisplay lcdDisplay;
DhtSensor dhtSensor;
HcSensor hcSensor;
MyIRRemote myIRRemote;
void setup() {
myIRRemote.setup();
}
void loop() {
myIRRemote.loop();
}