16 lines
615 B
C
16 lines
615 B
C
#pragma once
|
|
#include <Arduino.h>
|
|
#include "config.h"
|
|
|
|
void display_init();
|
|
void display_show_splash();
|
|
void display_show_homing();
|
|
void display_show_main_menu(uint8_t selected);
|
|
void display_show_axis_test(char axis, float posX, float posY, bool limitHit);
|
|
void display_show_file_list(const char files[][FILENAME_MAX_LEN], uint8_t count, uint8_t selected);
|
|
void display_show_printing(const char* filename, uint8_t percent, float speedMult);
|
|
void display_show_confirm_stop(bool yesSelected);
|
|
void display_show_uart_mode();
|
|
void display_show_error(const char* line1, const char* line2);
|
|
void display_force_update();
|