LED 썸네일형 리스트형 [Raspberry Pi3] 라즈베리파이3 PWM을 이용한 LED 제어 PWM이란?- Pulse Width Modulation(펄스 폭 변조)- 디지털 출력으로 아날로그 회로를 제어하는 기법 (GPIO핀은 디지털이기때문에 PWM을 이용하여 아날로그 신호를 제어한다) duty : 한 주기(T)동안 HIGH가 차지하는 비율ex) duty cycle = 50%이면 2.5V의 효과를 낼 수 있다. PWM으로 LED 점멸회로도 라즈베리파이3 GPIO Pin 구조는 http://cccding.tistory.com/89 확인 led.c#include#include#include #define LED 1 int main(){pinMode(LED , OUTPUT); //핀 초기화if(wiringPiSetup()==-1)return 1; softPwmCreate(LED,0,100); //PW.. 더보기 [Kernel Porting] LED 점멸하기1 작업 환경-메인 OS : Windows 8.1K(Intel Core i5-4590)-작업 OS : Ubuntu 14.04.5 LTS 64bit(VirtualBox)-장 비 명 : Hybus-Smart4412 led.c#include#include#include#include#include#include#include //디바이스 드라이버가 들어있는 경로 위치를 적어논것#define led "/dev/led"int main(){int dev , i;unsigned char data;//1. 해당 드라이버 경로//2. O_RDWRdev = open(led,O_RDWR);if(dev 속도를 115200으로 설정- Hybus-Smart4412 장비 부팅- 메뉴 -> 전송 -> ZMODEM -> 보내기 에서 실행.. 더보기 이전 1 다음