Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Laith_Oraha_PR.md
Original file line number Diff line number Diff line change
@@ -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
14 changes: 14 additions & 0 deletions Laith_Oraha_Project2.ino/Laith_Oraha_Project2.ino.ino
Original file line number Diff line number Diff line change
@@ -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

}