Lab 1 :

Blink

observations

alterations that I want to try

Documentation Lab …

67B2172C-5C4E-405F-849C-3316C2EDA034_1_201_a.heic

Applications that I found useful :

Dark circles - facial massage

I woke up pretty tired today, so I thought I would give this a try:

50F1F25A-B718-4A2B-835B-A7E4207C56FB_1_102_o.jpeg

F250538F-8026-4706-8B8A-32070F414ACA_1_102_o.jpeg

I taped the LRA motor under my eyelid and I played with the duration - delay of the code…

Do you see the results ?

Playing with the code :

changing the delay will make the effect last longer :

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(3000); //changed this one in order to                      // wait for a second
  digitalWrite(LED_BUILTIN, LOW);   // turn the LED off by making the voltage LOW
  delay(1000);                      // wait for a second
}