Ligne 68 : | Ligne 68 : | ||
void loop() { | void loop() { | ||
− | Serial.print(" | + | Serial.print("État des vibrations : "); |
Sensor_state = digitalRead(Vibration_signal); | Sensor_state = digitalRead(Vibration_signal); | ||
if (Sensor_state == 1) { | if (Sensor_state == 1) { | ||
− | Serial.println(" | + | Serial.println("Détection des vibrations"); |
} else { | } else { | ||
− | Serial.println(" | + | Serial.println("Pas de vibration"); |
} | } | ||
delay(50); | delay(50); |
plus d'infos : https://pdf1.alldatasheet.fr/datasheet-pdf/view/652087/ETC2/SW-420.html
Pour utiliser le capteur de vibration il n'y a besoin d'aucunes bibliothèques
Vibration Sensor SW-420 | ||
Avant le Setup | Importation de la bibliothèque | Aucunes bibliothèques |
Création des variables | int Vibration_signal = 7;
int Sensor_state = 1; | |
Dans le Setup | Configuration de la broche | pinMode(Vibration_signal, INPUT); |
Dans le Loop | Utilisation | Serial.print("Vibration status: ");
Sensor_state = digitalRead(Vibration_signal); if (Sensor_state == 1) { Serial.println("Sensing vibration"); } else { Serial.println("No vibration"); } delay(50); |
Aucune autres fonctionnalités
1 int Vibration_signal = 7;
2 int Sensor_state = 1;
3
4 void setup() {
5 pinMode(Vibration_signal, INPUT);
6 Serial.begin(9600);
7 }
8
9 void loop() {
10 Serial.print("État des vibrations : ");
11 Sensor_state = digitalRead(Vibration_signal);
12 if (Sensor_state == 1) {
13 Serial.println("Détection des vibrations");
14 } else {
15 Serial.println("Pas de vibration");
16 }
17 delay(50);
18 }
Item-Vibration_Sensor_SW-420_sw-420.jpg Published
Vous avez entré un nom de page invalide, avec un ou plusieurs caractères suivants :
< > @ ~ : * € £ ` + = / \ | [ ] { } ; ? #