728x90
파이썬, 아두이노 설치 방법
Python – Arduino 라이브러리 추가
단축키 윈도우+R 을 눌러 cmd 실행
명령어 프롬프트에서 pip install arduino-python3 입력
노란색 글씨로 업그레이드를 하라고 한다면 python -m pip install -U pip 입력
https://github.com/mkals/Arduino-Python3-Command-API
링크에 들어가서 Code 클릭 후 Download ZIP 클릭
위치 지정 후 압축 풀고 파일 실행
확인 후 업로드 클릭
파일 경로: 내가 지정한 위치 → Arduino-Python3-Command-API-master → Arduino-Python3-Command-API-master → sketches → prototype
아두이노 연결 방법
from Arduino import Arduino
import time
board = Arduino('115200')
board.pinMode(9, "OUTPUT")
while True:
board.digitalWrite(9, "LOW")
time.sleep(1)
board.digitalWrite(9, "HIGH")
time.sleep(1)
파이썬에 코드 삽입 후 실행
1초마다 깜빡거림 확인
728x90
'개발 > Arduino' 카테고리의 다른 글
[Arduino] 온도 센서로 RGB LED 제어하기 (+파이썬) (0) | 2021.09.17 |
---|---|
[Arduino] 시리얼 모니터로 가변저항 값 읽기 (+파이썬) (0) | 2021.09.16 |
[Arduino] 아두이노 설치하기 (0) | 2021.09.08 |