17 lines
469 B
C++
17 lines
469 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <datastruct.h>
|
|
#include <string>
|
|
|
|
void clearScreen();
|
|
void setCursor(const uint8_t x, const uint8_t y);
|
|
void printField(const char name[], const uint32_t val);
|
|
void printField(const char name[], const int32_t val);
|
|
void printField(const char name[], const int64_t val);
|
|
void printField(const char name[], const float val);
|
|
void printField(const char name[], const char *val);
|
|
|
|
void printInfo(const ignitionBoxStatus &info);
|
|
|