JM9 XRCU Board 0.2.0a
Libraries API Reference
Loading...
Searching...
No Matches
Monitor.h
Go to the documentation of this file.
1
8
9#ifndef MONITOR_H
10#define MONITOR_H
11
12#include <Arduino.h>
13
14#include <Supported_actuator.h>
15
16#include "Adafruit_GFX_Library/Adafruit_GFX.h" // Core graphics library
17#include "Adafruit_ST7735_and_ST7789_Library/Adafruit_ST7735.h" // Hardware-specific library for ST7735
18
23class Monitor : public Adafruit_ST7735, public Supported_actuator {
24 public:
29
34 void initAll ();
35
43};
44
50extern Monitor display;
51
52#endif // #ifndef MONITOR_H
Monitor display
The display monitor.
A monitor on XRCU.
Definition Monitor.h:23
void initFieldsOnly()
Initializes the state of member variables.
Monitor()
Creates a new monitor.
void initAll()
Initializes the physical monitor and this Monitor object.
Supported_actuator()
Creates an object of a supported actuator.
Definition Supported_actuator.h:23