Projet

Général

Profil

Manto Garcia

Glowing ceramic Timer

Description du projet

Todo

Liste de composants

Composants Nombre Prix Unitaire (€) Prix Total (€)
Arduino Uno 2 29,3 58,6
Cable USB 2 3,45 6,9
Relay 2 4 8
12V power adpter 2 7,99 15,98
Transformateur 230 9V 2 13,97 27,94
Switch 1 5,4 5,4
UV lampe 2 17,35 34,7

Total : 157,52 €

Script

//https://arduinogetstarted.com/tutorials/arduino-relay

const int RELAY_PIN = 3; 

void setup() {
  pinMode(RELAY_PIN, OUTPUT);
}

void loop() {
  digitalWrite(RELAY_PIN, HIGH);
  delay(500);
  digitalWrite(RELAY_PIN, LOW);
  delay(500);
}

Schéma du circuit

Bibliographie

https://arduinogetstarted.com/tutorials/arduino-relay

L'éthique des Hackers: https://fr.wikipedia.org/wiki/L%27%C3%89thique_des_hackers