暗いところに持っていくと点滅します。 部品はtiny2313とLEDを1個ずつ。 LEDを光センサーとして使っています。 // AVR Hotaru #include <avr/io.h> //#include <avr/interrupt.h> #include <util/delay.h> #define nop() __asm__ __volatile__ ("nop") #define SERIAL_DEBUG 0 #if SERIAL_DEBUG #define BAUD 2400 //#define SET_PORT(PORT, MASK, VALUE) PORT = (VALUE & MASK)|((~MASK) & PORT) void usart_init(void) { #define _UBRR (F_CPU/16/BAUD-1) UBRRH = _UBRR>>8;