1) 지식 창고는 본인이 작성한 콘텐츠(팁/노하우/리소스/강좌 등)을 무료 혹은 가상화폐인 납포인트를 통해 공유하는 공간입니다.
2) 본인이 작성한 콘텐츠에 대해서만 지식 창고에 등록할 수 있으며, 저작권에 위배되는 콘텐츠는 사전경고 없이 삭제될 수 있습니다.
3) 콘텐츠 구매 및 첨부파일 다운로드는 회원그룹 '연구원' 이상 가능하오니, 경험치를 쌓아 진급한 후에 이용 부탁드립니다.
4) 무료 콘텐츠의 본문은 구매절차 없이 즉시 이용할 수 있으며, 판매 납포인트가 있는 콘텐츠는 구매 후 이용할 수 있습니다.
5) 콘텐츠 판매에 따른 납포인트 수익은 지정한 비율(50%)에 따라 판매자에게 지급하며, 납포인트 수익을 통해 진급을 빨리할 수 있습니다.
6) 구매 후 평가를 하면 구매 납포인트의 20%를 돌려 드립니다.
판매자 | 나임 | 판매 납포인트 | 무료 | 평점 | 0점 / 총 0명 참여 |
---|
/* ========================================================================== */ /* RC Servo Motor Control Program */ /* ========================================================================== */ /* Designed and programmed by Duck-Yong Yoon in 2004. */
#include <avr/io.h> #include "c:\AvrEdit\Ok128c\Ok128.h"
void LCD_s2d(signed char number) /* display signed 2-digit decimal number */ { unsigned char i;
if(number >= 0) // sign { LCD_data('+'); i = number; } else { LCD_data('-'); i = -number; }
LCD_data(i/10 + '0'); // 10^1 LCD_data(i%10 + '0'); // 10^0 }
void Motor(signed char angle) /* output pulse for RC servo motor */ { unsigned int i;
i = 375 - 200*angle/90; // convert angle to OCR value
OCR1AH = (i >> 8); // set OCR1A OCR1AL = i & 0xFF;
LCD_command(0xC6); // display motor angle LCD_s2d(angle); }
int main(void) { signed char angle;
MCU_initialize(); // initialize MCU Delay_ms(50); // wait for system stabilization LCD_initialize(); // initialize text LCD module
LCD_string(0x80," RC Servo Motor "); // display motor angle LCD_string(0xC0," +00 ");
TCCR1A = 0xAA; // Fast PWM mode(14) TCCR1B = 0x1B; TCCR1C = 0x00; ICR1H = (4999 >> 8); // f(PWM) = 16MHz/64/5000 = 50Hz ICR1L = 4999 & 0xFF; // T(PWM) = 20ms
while(1) { Motor(0); // sequential motor angle control Delay_ms(500); Motor(-90); Delay_ms(500); Motor(+90); Delay_ms(500); Motor(0); Delay_ms(1000);
for(angle=0; angle>=-90; angle--) // continuous motor anglr control { Motor(angle); Delay_ms(40); } } }