You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			302 B
		
	
	
	
		
			C
		
	
			
		
		
	
	
			16 lines
		
	
	
		
			302 B
		
	
	
	
		
			C
		
	
| #ifndef _MENU_H_
 | |
| #include <stdint.h>
 | |
| 
 | |
| extern volatile uint8_t menu_state;
 | |
| 
 | |
| extern volatile uint16_t temp_values[4];
 | |
| extern volatile uint16_t temp_setpoints[4];
 | |
| 
 | |
| void write_temps(void);
 | |
| void write_setpoints(void);
 | |
| void update_cursor(void);
 | |
| void set_item(uint8_t page_num);
 | |
| void draw_menu(void);
 | |
| 
 | |
| #endif
 |