티스토리 뷰
728x90
출처
소스
/*Example sketch to control a 28BYJ-48 stepper motor with ULN2003 driver board, and Arduino UNO. More info: https://www.makerguides.com */ // Include the Arduino Stepper Library: #include <Stepper.h> // Number of steps per rotation: const int stepsPerRevolution = 2048; //Wiring: // Pin 8 to IN1 on the ULN2003 driver // Pin 9 to IN2 on the ULN2003 driver // Pin 10 to IN3 on the ULN2003 driver // Pin 11 to IN4 on the ULN2003 driver // Create stepper object called 'myStepper', note the pin order: Stepper myStepper = Stepper(stepsPerRevolution, 8, 10, 9, 11); void setup() { // Set the speed to 5 rpm: myStepper.setSpeed(5); // Initialize the serial port: Serial.begin(9600); } void loop() { // Step one revolution in one direction: Serial.println("clockwise"); myStepper.step(stepsPerRevolution); delay(500); // Step one revolution in the other direction: Serial.println("counterclockwise"); myStepper.step(-stepsPerRevolution); delay(500); }
실행 영상
댓글
300x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- KOBA
- Delphi Tip
- ble
- 일본여행
- Mac
- ffmpeg
- NDK
- BPI-M4
- Java
- MySQL
- Delphi
- 전예희
- 레이싱모델 익스트림 포토 페스티벌
- android
- 서울오토살롱
- oracle
- ubuntu
- 송주경
- 지스타2007
- 튜닝쇼 2008
- Spring MVC
- SAS
- flex
- sas2009
- Spring
- Xcode
- Linux
- JavaScript
- 동경
- koba2010
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함