Paso 6: Relé de estado sólido
¿POR QUÉ RELÉ DE ESTADO SÓLIDO?
- Control de aire acondicionado actual por la luz y bomba de agua. El Arduino 101 se dispara energía ON/OFF basado en una referencia de tiempo de la construcción en RTC (reloj en tiempo real).
NOTAS
- Ver imagen para la instrucción de cableado.
- C.C. + 5V
- DC-a GND
- CH1 al Pin Digital 3
- CH2 para Pin Digital 4
- Si usted es nuevo al relé y aire acondicionado actual, asegúrese de leer este artículo y advertencias como corriente de aire acondicionado podría matarte: http://tech.iprock.com/?p=10030.
RELÉ USADO
- 5V 2A canal de estado sólido relé módulo tablero bajo nivel gatillo con fusible estable Arduino Uno Duemilanove MEGA2560 MEGA1280 brazo DSP PIC frambuesa Pi relé
- Características:
- Se usa para controlar varios aparatos y otros equipos con corriente grande.
- Puede ser controlado directamente por el microcontrolador (Arduino, Raspberry Pi, 8051, AVR, PIC, DSP, brazo, brazo, MSP430, lógica TTL).
- Especificaciones:
- Fuente de alimentación: 5V DC (160mA)
- Entrada de voltaje de la señal de control: (0-0.5V baja etapa SSR está apagado) (2.5-20V alta etapa SSR está encendido)
- Salida SSR (cada canal): gama del voltaje de carga: 75 a 264VAC (50 / 60Hz).
- Corriente de carga: 0. 1 a 2 AMP.
- Fuente de alimentación: 5VDC / 160mA (todos los canales ON).
- Control señal Voltaje de entrada: 0V - 0. 5V
- Bajo escenario (SSR está en OFF): 0.5V-2.5V. 2. 5V - 20V
- Estado alto (SSR está encendido)
- Características:
EL CÓDIGO DE
// Digital pin for Light #define RELAY1_PIN 3 // Digital pin for Pump #define RELAY2_PIN 4 // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin 2 and 3 as an output. pinMode(RELAY1_PIN, OUTPUT); pinMode(RELAY2_PIN, OUTPUT); }// the loop function runs over and over again forever void loop() { // turn the signal to GPIOs pin of Relay 1 to high and Relay 2 to low(HIGH the voltage level) digitalWrite(RELAY1_PIN, HIGH); digitalWrite(RELAY2_PIN, LOW); delay(2*1000); // wait for 2 second // turn the signal to GPIOs pin of Relay 2 to high and Relay 1 to low(HIGH the voltage level) digitalWrite(RELAY1_PIN, LOW); digitalWrite(RELAY2_PIN, HIGH); delay(2*1000); // wait for 2 second //Turn both relay to OFF digitalWrite(RELAY1_PIN, LOW); digitalWrite(RELAY2_PIN, LOW); delay(5*1000); // wait for 5 second }