728x90

가변저항 2

[Arduino] 프로세싱으로 가변저항 값 출력하기

프로세싱이란? 컴퓨터 프로그래밍의 본질을 시각적 개념으로 프로그래머가 아닌 사람들에게 교육할 목적으로 뉴 미디어 아트, 시각 디자인 공동체를 위해 개발된 오픈 소스 프로그래밍 언어이자 통합 개발 환경이다. 프로세싱 설치 Welcome to Processing! Processing is a flexible software sketchbook and a language for learning how to code within the context of the visual arts. Since 2001, Processing has promoted software literacy within the visual arts… processing.org 아두이노 연결 방법 (가변저항을 못찾아서 다른 센서 넣음) 포트..

개발/Arduino 2021.11.19

[Arduino] 시리얼 모니터로 가변저항 값 읽기 (+파이썬)

파이썬으로가변저항이란? 저항 값을 임의로 바꿀 수 있는 저항기 1번, 3번 다리에 5V, GND를 연결하고 가운데는 출력 값으로 사용 아두이노 연결 방법 (가변저항을 못찾아서 다른 센서 넣음) 직접 연결한 모습 const int POT=0; int val=0; void setup(){ Serial.begin(9600); } void loop(){ val=analogRead(POT); Serial.println(val); delay(500); } 아두이노 코드 실행 결과 돌리면 값이 바뀌는 것을 확인할 수 있음 아래는 파이썬으로 실행하기 [Arduino] 파이썬에서 아두이노 LED 제어 파이썬, 아두이노 설치 방법 [Python] 파이썬 설치하기 파이썬 설치 파이썬 홈페이지 접속 후 다운로드 클릭 (htt..

개발/Arduino 2021.09.16
728x90