9 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "the50.h"
 | |
| 
 | |
| void the50_led_on(void) {
 | |
|   DDRB |= (1 << 7); PORTB &= ~(1 << 7);
 | |
| }
 | |
| 
 | |
| void the50_led_off(void) {
 | |
|   DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
 | |
| }
 | 
