- 동경사변
- piwall
- 東京事変
- formex
- 세실내과
- Arduino
- 이슬비침
- Skins
- 인천작업실
- wall display raspberrypi
- OPT #EAD
- 월디스플레이
- 세운전자상가
- 시온여성병원
- 4대 대첩
- raspberrypi wifi
- 파이월
- 러쉬 해외 직구
- 도쿄지헨
- 시이나링고
- 라즈베리파이 와이파이
- 흥성전기
- IR sensor
- Shena Ringo
- 東京事變
- 라즈베리파이 모니터벽
- 막달운동
- formex E400
- sony nex vg20
- 유학생 건강검진
- Today
- Total
'_'
sweep_motor_채찍질 본문
// Sweep
// by BARRAGAN <http://barraganstudio.com>
// This example code is in the public domain.
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// a maximum of eight servo objects can be created
int pos = 0; // variable to store the servo position
void setup()
{
myservo.attach(9); // attaches the servo on pin 9 to the servo object
myservo.write(180);
delay(5000);
}
void loop()
{
myservo.write(160); // tell servo to go to position in variable 'pos'
// waits 15ms for the servo to reach the position
delay(random(10000,35000));
for(pos = 170; pos >= 10; pos -= 1) // goes from 0 degrees to 180 degrees
{ // in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(10); // waits 15ms for the servo to reach the position
}
delay(400);
}
'자료용' 카테고리의 다른 글
DM_Interactive Text_2017 (0) | 2017.09.16 |
---|---|
리히터<4096가지색채>_임근준 (0) | 2017.07.13 |
S.O.S code for Arduino (0) | 2017.06.18 |
윈도우 화면캡쳐 및 화면녹화 단축키 (0) | 2017.06.18 |
아두이노 - 릴레이이용한 가정용품제어 (0) | 2017.06.16 |