JM9 XRCU Board 0.1.2
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
24 public:
28 Monitor ();
29
34 void initAll ();
35
42 void initFieldsOnly ();
43};
44
50extern Monitor display;
51
52#endif // #ifndef MONITOR_H
Adafruit_ST7735(int8_t cs, int8_t dc, int8_t mosi, int8_t sclk, int8_t rst)
Instantiate Adafruit ST7735 driver with software SPI.
Definition Adafruit_ST7735.cpp:14
A monitor on XRCU.
Definition Monitor.h:23
void initFieldsOnly()
Initializes the state of member variables.
Definition Monitor.cpp:29
Monitor()
Creates a new monitor.
Definition Monitor.cpp:16
void initAll()
Initializes the physical monitor and this Monitor object.
Definition Monitor.cpp:24
Supported_actuator()
Creates an object of a supported actuator.
Definition Supported_actuator.h:23