안녕하세요. 오늘은 아트메가와 핸드폰 앱을통해서 블루투스로 LED를 제어해보겠습니다. 아트메가128 usart통신하기(1) 여기 글에 usart에 대한 설명이 있습니다. 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 32 33 34 #include #include #include #define F_CPU 16000000UL volatile unsigned char flag; ISR(USART0_RX_vect) { flag=UDR0; } void init() { DDRA=0xff; UCSR0A=0x00; UCSR0B=0x98; UCSR0C=0x06; UBRR0H=0; UBRR0L=103; SREG=0x8..