SSR-25DA 솔리드 스테이트 릴레이 25A

(SSR-25DA Single Phase

DC to AC Solid State Relay 25A)

개요

  • 본 제품은 Single-Phase Solid State Relay입니다.
  • 25A등급이며, 낮은 동작전류 가지고 있으며, 내장된 opto-couple으로 절연되어 있어 아두이노로 추가 회로없이 바로 동작시킬 수 있습니다.
  • 불연성의 외부의 플라스틱 커버는 릴레이를 안전하게 보호하며, 충격이나 진동에 강하게 디자인되었습니다.
  • 스크류 터미널 블럭을 통해 전선을 연결할 수 있으며, 낮은 입력 동작전류로 인해 쉽게 다양한 디지털 회로와 연결할 수 있습니다.
  • SSR 릴레이는 비접촉식이기때문에 기존의 기계식 릴레이에 비해 수명과 성능(낮은 전자기파의 영향, 빠른 속도 등)좋습니다.
  • 알림: 중국에서 수입되는 카피품입니다.

특징

  • Reliable SMT technology
  • High ultra insulation resistance over 50MΩ/500V DC
  • High dielectric over 2.5KV
  • Low enable current less than 7.5mA/12V DC, compatible with CMOS IC or TTL
  • Low EMI/EFI & surge by zero cross trigger method
  • High surge current over 410A/one cycle (60Hz)
  • High surge voltage duration by snubber circuit
  • Control Mode:DC-AC
  • Load Voltage: 24-380VAC
  • Control Voltage: 3-32VDC
  • Control Current: DC3-25mA
  • Working voltage: 250V
  • On voltage: ≤1V
  • One-off Time: ≤10ms
  • Off leakage Current: ≤2mA
  • Installation Method: Bolt Fixed
  • Working Indication: LED

문서

  • playing-with-raspberry-pi
  • Using the Raspberry Pi to control AC electric power
  • wiring example
  • 참고 예제
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    /*
     
      The ssr will turn on for 5s and then turn off for 5s, and so on.
     
    */
     
    int ssrControlPin = 13;
    void setup() {               
      // initialize the digital pin as an output.
      pinMode(ssrControlPin, OUTPUT);    
    }
     
    void loop() {
      digitalWrite(ssrControlPin, HIGH);      // set the SSR on
      delay(5000);                            // wait for 5 second
      digitalWrite(ssrControlPin, LOW);       // set the SSR off
      delay(5000);                            // wait for 5 second
    }
     

연관제품