diff --git a/Laith_Oraha_PR.md b/Laith_Oraha_PR.md new file mode 100644 index 0000000..beb36ad --- /dev/null +++ b/Laith_Oraha_PR.md @@ -0,0 +1,6 @@ +Laith Oraha +Junior, Computer Engineering + +I work part time at High Tech Mobile. We program the modules in cars. We also diagnose electrical problems in cars. + +CAN communcation project diff --git a/Laith_Oraha_Project2.ino/Laith_Oraha_Project2.ino.ino b/Laith_Oraha_Project2.ino/Laith_Oraha_Project2.ino.ino new file mode 100644 index 0000000..78fcc26 --- /dev/null +++ b/Laith_Oraha_Project2.ino/Laith_Oraha_Project2.ino.ino @@ -0,0 +1,14 @@ +void setup() { + // put your setup code here, to run once: + pinMode(D3,OUTPUT); //sets pin as an output + +} + +void loop() { + // put your main code here, to run repeatedly: + digitalWrite(D3, HIGH); //turns it on + delay(1000); //delays by 1 s + digitalWrite(D3, LOW); //turns it off + delay(1000); //1000ms = 1 s + +}