~tuesday 10 december~ ~Fail?~
Our goal for today was finishing arduino however it did not went the way we wanted. We learnt that the suldier for our wires needed to be redone (we need to do a parralels circuit) but we couldn't accessed to it, others groups were using it. Then with Angèle we need to go when we dont have class to the fab lab (the lab where we do our projects) to suldier it.
Moreover we tried in 3 HOURS so many codes for our buzzers to work, it never worked. Because of what ? our computers. We lost so many times thinking it wasn't good but it was just our computers cause when we tried the same code with same materials it did work. Then at an other time we need to meet Angèle and I to finish our code.
We don't have enough hope on that project finally comparing to other it is not nice, but thanks to our first follower beleive in us.
No worries we do not give up just our moral is affect.
is it our code:
// Définir la broche utilisée pour le buzzer
const int pinBuzzer = 8;
void setup() {
// Initialiser la communication série pour envoyer des messages au PC
Serial.begin(9600);
// Configurer la broche du buzzer en sortie
pinMode(pinBuzzer, OUTPUT);
}
void loop() {
// Activer le buzzer
digitalWrite(pinBuzzer, HIGH);
Serial.println("Le buzzer devrait émettre un son !");
delay(500); // Jouer le son pendant 500 millisecondes
// Désactiver le buzzer
digitalWrite(pinBuzzer, LOW);
Serial.println("Le buzzer est silencieux.");
delay(500); // Pause avant le prochain son
}
EDIT: Angèle writting:
I went to the pharmacie this tuesday and the guy was really into our project so it did affect me in a positive way.
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.