-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobalClass.h
More file actions
57 lines (38 loc) · 1.36 KB
/
GlobalClass.h
File metadata and controls
57 lines (38 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// GlobalClass.h
// Glowdeck
//
// Created by Justin Kaufman on 8/17/17.
// Copyright © 2017 Justin Kaufman. All rights reserved.
//
#ifndef _GLOBALCLASS_H
#define _GLOBALCLASS_H
#include "Globals.h" // Global variables and defines
#include "Runnable.h" // Optimizes setup/loop methods
// #include "Utility.h"
#include "Button.h" // Manages tactile buttons
#include "GlowdeckManager.h" // Manages device properties and settings
#include "BootloaderManager.h" // Manages bootloader and firmware upgrade
#include "SerialManager.h" // Manages serial ports
#include "BluetoothManager.h" // Manages bluetooth
#include "WifiManager.h" // Manages wifi
#include "LEDManager.h" // Manages array of leds
#include "DisplayManager.h" // Manages display
class GlobalClass {
public:
GlobalClass();
protected:
friend class Runnable;
friend class Button;
friend class FrontButton;
friend class LeftButton;
friend class RightButton;
friend class GlowdeckManager;
friend class SerialManager;
friend class BluetoothManager;
friend class WifiManager;
friend class BootloaderManager;
friend class LEDManager;
friend class DisplayManager;
};
#endif