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
4 changes: 4 additions & 0 deletions Kohki_Kita_Project1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Name: Kohki Kita <br>
Major: Computer Engineering <br>
Experience: Personal Projects (HTML/CSS, JS, C++) <br>
Project: CAN Communication or BMS <br>
13 changes: 13 additions & 0 deletions Kohki_Kita_Project2/Kohki_Kita_Project2.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#define LED_PIN D3

void setup() {
pinMode(LED_PIN, OUTPUT)
}

void loop() {
digitalWrite(LED_PIN, HIGH); // turn the LED on
delay(1000); // wait for a second
digitalWrite(LED_PIN, LOW); // turn the LED off
delay(1000);

}