개발/Arduino

[Arduino] 파이썬에서 아두이노 제어하기

Hyunsun 2021. 9. 8. 21:55
728x90

파이썬, 아두이노 설치 방법

 

[Python] 파이썬 설치하기

파이썬 설치 파이썬 홈페이지 접속 후 다운로드 클릭 (https://www.python.org/) Welcome to Python.org The official home of the Python Programming Language www.python.org Download Python 3.9.7 클릭 Ad..

hyunsun99.tistory.com

 

 

[Arduino] 아두이노 설치하기

아두이노 설치 아두이노 홈페이지 접속 후 소프트웨어 클릭(https://www.arduino.cc/) Arduino - Home www.arduino.cc 컴퓨터의 운영체제에 맞는 설치 파일 클릭 다운만 받고싶다면 JUST DOWNLOAD 파일 저장..

hyunsun99.tistory.com

 

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