From 96d059372dc079d99a0c6c2acc4f6b36c55f6ec6 Mon Sep 17 00:00:00 2001 From: laith204 Date: Tue, 17 Sep 2024 17:23:05 -0700 Subject: [PATCH 1/4] Create Laith_Oraha_PR --- Laith_Oraha_PR | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Laith_Oraha_PR diff --git a/Laith_Oraha_PR b/Laith_Oraha_PR new file mode 100644 index 0000000..beb36ad --- /dev/null +++ b/Laith_Oraha_PR @@ -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 From a062b5a37220aab7530267624b4a6fdf6b574355 Mon Sep 17 00:00:00 2001 From: laith204 Date: Tue, 17 Sep 2024 17:36:28 -0700 Subject: [PATCH 2/4] Delete Laith_Oraha_PR --- Laith_Oraha_PR | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 Laith_Oraha_PR diff --git a/Laith_Oraha_PR b/Laith_Oraha_PR deleted file mode 100644 index beb36ad..0000000 --- a/Laith_Oraha_PR +++ /dev/null @@ -1,6 +0,0 @@ -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 From 5f59aa0265da4510b8a0d2e94924605467f853b2 Mon Sep 17 00:00:00 2001 From: laith204 Date: Tue, 17 Sep 2024 17:37:07 -0700 Subject: [PATCH 3/4] Create Laith_Oraha_PR.md --- Laith_Oraha_PR.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Laith_Oraha_PR.md 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 From 27db122bb39dbb55d095bc79d9ea1bce5d876250 Mon Sep 17 00:00:00 2001 From: laith204 Date: Thu, 19 Sep 2024 11:12:20 -0700 Subject: [PATCH 4/4] Create Laith_Oraha_Project2.ino.ino Haven't tested it on a board yet. --- .../Laith_Oraha_Project2.ino.ino | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Laith_Oraha_Project2.ino/Laith_Oraha_Project2.ino.ino 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 + +}