첫 번째 단계는 새 프로젝트 또는 파일을 열고 파이썬 코드를 작성하는 것입니다. 방법이 기억나지 않는다면면 이전 강의에서 파이참 설정 비디오를 시청하세요.
이 테스트에서 연습할 수 있도록 몇 가지 코드를 작성했습니다! 걱정하지 마세요. 드론은 아직 이륙하지 않습니다. 다음 수업에서 그렇게 할 것입니다.😀
이 코드를 복사하여 새 Python 파일에 붙여넣습니다.
I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
from time import sleep
from codrone_edu.drone import *
drone = Drone()
drone.pair()
drone.set_drone_LED(255,255,255,255)
drone.drone_buzzer(Note.C4, 1000)
drone.drone_buzzer(Note.D4, 1000)
drone.drone_buzzer(Note.E4, 1000)
drone.close()