메뉴 건너뛰기

정보자료게시판

장비/디자인/구조

[아두이노] 수위를 감지해 자동 급수

by 라키 posted Aug 10, 2018
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

아두이노릴레이연결

int relay=10;

void setup() {

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

  pinMode(relay,OUTPUT);

}

 

void loop() {

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

  digitalWrite(relay,HIGH);

  delay(5000);

  digitalWrite(relay,LOW);

  delay(5000);

}

http://makeshare.org/bbs/board.php?bo_table=arduinoetc&wr_id=14

수위감지센서연결

int relayPin=10;

int WSPin=0;

int val=0;

 

void setup() {

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

  pinMode(relayPin,OUTPUT);

  Serial.begin(9600);

}

 

void loop() {

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

  val=analogRead(WSPin);

  

  if(val>100) digitalWrite(relayPin,HIGH);

  else digitalWrite(relayPin,LOW);

 

  Serial.println(val);

  delay(500);

}

http://deneb21.tistory.com/223

우노전력소비량

 

http://blog.naver.com/PostView.nhn?blogId=twophase&logNo=220984878969&categoryNo=35&parentCategoryNo=0&viewDate=&currentPage=1&postListTopCurrentPage=1&from=search


  1. Google App Script 행 복사하기

    Date2022.02.16 Category장비/디자인/구조 By숨마
    Read More
  2. 구 아이오닉 대비 egv70 중량 등 비교

    Date2022.02.14 Category전기차 By숨마
    Read More
  3. GV70 무선충전 변경인증

    Date2022.02.14 Category전기차 By숨마
    Read More
  4. 맥북 몬테레이 화면 회전하는 방법

    Date2022.02.14 Category장비/디자인/구조 By숨마
    Read More
  5. egv70 gv70 전기차 출시 예정

    Date2022.02.11 Category전기차 By숨마
    Read More
  6. Nest 보일러 자동 온도조절기의 강력함

    Date2022.02.10 Category장비/디자인/구조 By숨마
    Read More
  7. 아이폰 아이패드 zotero 문제

    Date2022.02.10 Category장비/디자인/구조 By숨마
    Read More
  8. 미디어위키 사이트맵 만들기

    Date2022.02.03 Category장비/디자인/구조 By숨마
    Read More
  9. 2022 맥북프로 14인치_M1 Pro

    Date2022.01.29 Category애플/맥 By숨마
    Read More
  10. 미디어위키 백링크 넣기

    Date2022.01.27 Category장비/디자인/구조 By숨마
    Read More
  11. 2번 윈도우 서버 이상

    Date2022.01.25 Category장비/디자인/구조 By숨마
    Read More
  12. MacOS 몬테레이 목소리 변경 안됨

    Date2022.01.18 Category장비/디자인/구조 By숨마
    Read More
  13. 자동화 단상

    Date2022.01.17 By숨마
    Read More
  14. 투야 워터센서의 불안정성

    Date2022.01.16 Category장비/디자인/구조 By숨마
    Read More
  15. 토론 규칙

    Date2022.01.07 Category학습/연구 By숨마
    Read More
  16. 시놀로지 DS Drive 드라이브 인증서 문제

    Date2022.01.07 Category장비/디자인/구조 By숨마
    Read More
  17. 2023년 연간달력

    Date2022.01.03 Category장비/디자인/구조 By숨마
    Read More
  18. 맥 쉬프트 터치 안될때

    Date2022.01.03 Category장비/디자인/구조 By숨마
    Read More
  19. 시놀로지 http -> https 로 리다이렉션 하기

    Date2022.01.02 Category장비/디자인/구조 By숨마
    Read More
  20. 맥 글자 두번 눌리는 현상 옵시디언 | 모하비 | MacOS

    Date2022.01.02 By숨마
    Read More
Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 45 Next
/ 45
위로