×
1 Elija los certificados EITC/EITCA
2 Aprende y realiza exámenes en línea
3 Obtenga sus habilidades de TI certificadas

Confirme sus habilidades y competencias de TI bajo el marco europeo de certificación de TI desde cualquier parte del mundo completamente en línea.

Academia EITCA

Estándar de certificación de habilidades digitales del Instituto Europeo de Certificación de TI con el objetivo de apoyar el desarrollo de la Sociedad Digital

OLVIDÓ SU CONTRASEÑA?

CREAR UNA CUENTA

Arduino And Raspberry - Pi Sensor Projects For Th...

// Light Clapper Starter const int sensorPin = 2; // Sound sensor digital output const int ledPin = 13; // Built-in LED bool ledState = false; void setup() { pinMode(sensorPin, INPUT); pinMode(ledPin, OUTPUT); } void loop() { int status = digitalRead(sensorPin); if (status == HIGH) { // If sound is detected ledState = !ledState; // Toggle LED digitalWrite(ledPin, ledState ? HIGH : LOW); delay(500); // Small delay to prevent double-triggering } } Use code with caution. Copied to clipboard

: Projects using reed switches, infrared motion detectors, or ultrasonic distance sensors. Arduino and Raspberry Pi Sensor Projects for th...

: Projects using TFT color screens to show sensor data. // Light Clapper Starter const int sensorPin =

Arduino and Raspberry Pi Sensor Projects for the Evil Genius void setup() { pinMode(sensorPin

ARRIBA