'_'

솔레노이드(solenid)(전원5.5/2.1)_빵판연결사진포함_코드포함_with relay 본문

자료용

솔레노이드(solenid)(전원5.5/2.1)_빵판연결사진포함_코드포함_with relay

YISUP 2017. 5. 29. 16:51

http://www.devicemart.co.kr/1329581



잉??ㅋㅋㅋ



오..




http://www.instructables.com/id/Controlling-solenoids-with-arduino/#intro

http://www.bc-robotics.com/tutorials/controlling-a-solenoid-valve-with-arduino/

http://www.hardcopyworld.com/ngine/aduino/index.php/archives/1059






const int solPin = 8; 

int i=0;


void setup() {

  // put your setup code here, to run once:

  pinMode(solPin, OUTPUT);


}


void loop() {

  // put your main code here, to run repeatedly:

  for(i=0;i<5;i++)

  {

    digitalWrite(solPin,HIGH);

    delay(500);

    digitalWrite(solPin,LOW);

    delay(500);

  }

  delay(5000);

}


-----------------------------------------

with RELAY!!



'자료용' 카테고리의 다른 글

유학생 건강검진 - 세실내과 추천!  (0) 2017.06.09
F1 비자 발급받기  (0) 2017.06.02
작업노트들_Artist statements  (0) 2017.05.29
Ochi Projects  (0) 2017.05.28
인공지능과 예술가 혹은 예술 혹은 인간  (0) 2017.04.27