Short description about this project and what it does.
Explain the context, purpose, and background of the project. What problem does it solve? Who is it for? Why did you build it?
Explain the feature in detail.
Explain the feature in detail.
Explain the feature in detail.
// Sample code block
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
delay(1000);
digitalWrite(2, LOW);
delay(1000);
}
Describe what you achieved. Did it work well? What data or results did you get?
Explain difficulties, bugs, hardware problems, or improvements. Mention new skills you gained.