screen.h 462 B

123456789101112131415
  1. #ifndef DCLOAD_SCREEN_H
  2. #define DCLOAD_SCREEN_H
  3. #include <Arduino.h>
  4. void setmode();
  5. void print_char(int x1,int z, char text);
  6. void print_chars(int x1,int z, char * text,int len);
  7. void print_line(int x1,int len);
  8. void screen_clear(char empty);
  9. void writeStr(char * command, char * txt);
  10. void writeNum2(char * command, uint16_t value);
  11. void print_temp(void);
  12. void color_load (bool load);
  13. void print_reading(void);
  14. void print_input(void);
  15. #endif //DCLOAD_SCREEN_H