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.
19 lines
371 B
C
19 lines
371 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 write_motor(void);
|
|
void update_cursor(void);
|
|
void set_item(uint8_t page_num);
|
|
void draw_menu(void);
|
|
void enc_init(void);
|
|
void encoder_isr(void);
|
|
|
|
#endif
|