// Include Libraries
#include "Arduino.h"
#include "LED.h"
// Pin Definitions
#define HCSR04_PIN_TRIG 3
#define HCSR04_PIN_ECHO 2
#define LEDB_1_PIN_VIN 5
#define LEDB_2_PIN_VIN 6
#define LEDB_3_PIN_VIN 9
// Global variables and defines
// object initialization
NewPing hcsr04(HCSR04_PIN_TRIG,HCSR04_PIN_ECHO);
LED ledB_1(LEDB_1_PIN_VIN);
LED ledB_2(LEDB_2_PIN_VIN);
LED ledB_3(LEDB_3_PIN_VIN);
// define vars for testing menu
const int timeout = 10000; //define timeout of 10 sec
char menuOption = 0;
long time0;
// Setup the essentials for your circuit to work. It runs first every time your circuit is powered with electricity.
void setup()
{
// Setup Serial which is useful for debugging
// Use the Serial Monitor to view printed messages
Serial.begin(9600);
while (!Serial) ; // wait for serial port to connect. Needed for native USB
Serial.println("start");
menuOption = menu();
}
// Main logic of your circuit. It defines the interaction between the components you selected. After setup, it runs over and over again, in an eternal loop.
void loop()
{
if(menuOption == '1') {
// Ultrasonic Sensor - HC-SR04 - Test Code
// Read distance measurment from UltraSonic sensor
int hcsr04Dist = hcsr04.ping_cm();
delay(10);
Serial.print(F("Distance: ")); Serial.print(hcsr04Dist); Serial.println(F("[cm]"));
}
else if(menuOption == '2') {
// LED - Basic Blue 5mm #1 - Test Code
// The LED will turn on and fade till it is off
for(int i=255 ; i> 0 ; i -= 5)
{
ledB_1.dim(i); // 1. Dim Led
delay(15); // 2. waits 5 milliseconds (0.5 sec). Change the value in the brackets (500) for a longer or shorter delay in milliseconds.
}
ledB_1.off(); // 3. turns off
}
else if(menuOption == '3') {
// LED - Basic Blue 5mm #2 - Test Code
// The LED will turn on and fade till it is off
for(int i=255 ; i> 0 ; i -= 5)
{
ledB_2.dim(i); // 1. Dim Led
delay(15); // 2. waits 5 milliseconds (0.5 sec). Change the value in the brackets (500) for a longer or shorter delay in milliseconds.
}
ledB_2.off(); // 3. turns off
}
else if(menuOption == '4') {
// LED - Basic Blue 5mm #3 - Test Code
// The LED will turn on and fade till it is off
for(int i=255 ; i> 0 ; i -= 5)
{
ledB_3.dim(i); // 1. Dim Led
delay(15); // 2. waits 5 milliseconds (0.5 sec). Change the value in the brackets (500) for a longer or shorter delay in milliseconds.
}
ledB_3.off(); // 3. turns off
}
if (millis() - time0 > timeout)
{
menuOption = menu();
}
}
// Menu function for selecting the components to be tested
// Follow serial monitor for instrcutions
char menu()
{
Serial.println(F("\nWhich component would you like to test?"));
Serial.println(F("(1) Ultrasonic Sensor - HC-SR04"));
Serial.println(F("(2) LED - Basic Blue 5mm #1"));
Serial.println(F("(3) LED - Basic Blue 5mm #2"));
Serial.println(F("(4) LED - Basic Blue 5mm #3"));
Serial.println(F("(menu) send anything else or press on board reset button\n"));
while (!Serial.available());
// Read data from serial monitor if received
while (Serial.available())
{
char c = Serial.read();
if (isAlphaNumeric(c))
{
if(c == '1')
Serial.println(F("Now Testing Ultrasonic Sensor - HC-SR04"));
else if(c == '2')
Serial.println(F("Now Testing LED - Basic Blue 5mm #1"));
else if(c == '3')
Serial.println(F("Now Testing LED - Basic Blue 5mm #2"));
else if(c == '4')
Serial.println(F("Now Testing LED - Basic Blue 5mm #3"));
else
{
Serial.println(F("illegal input!"));
return 0;
}
time0 = millis();
return c;
}
}
}