Para melhorar a sua experiência este site utiliza cookies. Ao navegar, está a consentir a sua utilização. Saiba mais sobre os nossos cookies.

Preço reduzido

Sensor Piezo Elétrico 2cm

1,57 €
1,85 €

(SEM IVA 1.28€)

a0058ok

Sonorizador Piezo eléctrico 2cm. Este sensor transforma vibrações em sinais eléctricos.

Desconto de quantidade

Quantidade Preço Poupa
3 1,56 € Até 0,05 €
5 1,52 € Até 0,24 €
10 1,49 € Até 0,79 €
Quantidade
Disponível Loja Gaia e Online (Envio 24h)

Os sensores piezo electricos são úteis quando precisamos detectar vibrações ou batidas. Podem ser utilizados como sensores de toque pois convertem a vibração num sinal eléctrico ou podem ser usados como transdutores de audio e funcionar como um pequeno buzzer.

Documentação:
→ Datasheet
→ Tutorial Arduino

Inclui:
• 1 x Sensor Piezo Elétrico 2cm. 

Esquema de Ligação:

Código Exemplo: 

*/
// these constants won't change:
const int ledPin = 13; // led connected to digital pin 13
const int knockSensor = A0; // the piezo is connected to analog pin 0
const int threshold = 100; // threshold value to decide when the detected sound is a knock or not

// these variables will change:
int sensorReading = 0; // variable to store the value read from the sensor pin
int ledState = LOW; // variable used to store the last LED status, to toggle the light
void setup() {
pinMode(ledPin, OUTPUT); // declare the ledPin as as OUTPUT
Serial.begin(9600); // use the serial port
}
void loop() {
// read the sensor and store it in the variable sensorReading:
sensorReading = analogRead(knockSensor); 

// if the sensor reading is greater than the threshold:
if (sensorReading >= threshold) {
// toggle the status of the ledPin:
ledState = !ledState; 
// update the LED pin itself: 
digitalWrite(ledPin, ledState);
// send the string "Knock!" back to the computer, followed by newline
Serial.println("Knock!"); 
}
delay(100); // delay to avoid overloading the serial port buffer
}
NOVA ENCOMENDA