//LED AND ONSWITCH
int ledRed = 4; //PIN 4 IS SET FOR THE RED LED
int onSwitch = 2; //PIN 2 IS SET FOR THE SWITCH ON/OFF
//ULTRASONIC SENSOR
const int trig = 5;
const int echo = 6;
void setup() {
//LED AND ON SWITCH
pinMode(ledRed, OUTPUT); //SETS LEDRED PIN TO OUTPUT
pinMode(onSwitch, OUTPUT); //SETS SWITCH PIN TO OUTPUT
digitalWrite(ledRed, HIGH); //TURND LEDRED PIN TO HIGH, ON
digitalWrite(onSwitch, HIGH); //TURNS ONSWITCH TO HIGH, ON
}
void loop() {
// put your main code here, to run repeatedly:
}