Arduino style GUI

Committer:
jonebuckman
Date:
Wed Feb 27 22:34:06 2019 +0000
Revision:
4:d353b314d244
Parent:
3:b5409826d05f
Updated writeCommand and writeData.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jonebuckman 1:d02971b30635 1 /* NeatGUIs Library
jonebuckman 1:d02971b30635 2 * Copyright (c) 2013 Neil Thiessen
jonebuckman 1:d02971b30635 3 * Copyright (c) 2016 Jon Buckman
jonebuckman 1:d02971b30635 4 *
jonebuckman 1:d02971b30635 5 * Licensed under the Apache License, Version 2.0 (the "License");
jonebuckman 1:d02971b30635 6 * you may not use this file except in compliance with the License.
jonebuckman 1:d02971b30635 7 * You may obtain a copy of the License at
jonebuckman 1:d02971b30635 8 *
jonebuckman 1:d02971b30635 9 * http://www.apache.org/licenses/LICENSE-2.0
jonebuckman 1:d02971b30635 10 *
jonebuckman 1:d02971b30635 11 * Unless required by applicable law or agreed to in writing, software
jonebuckman 1:d02971b30635 12 * distributed under the License is distributed on an "AS IS" BASIS,
jonebuckman 1:d02971b30635 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
jonebuckman 1:d02971b30635 14 * See the License for the specific language governing permissions and
jonebuckman 1:d02971b30635 15 * limitations under the License.
jonebuckman 1:d02971b30635 16 */
jonebuckman 1:d02971b30635 17
jonebuckman 1:d02971b30635 18 #ifndef NEAT_GUIS_H
jonebuckman 1:d02971b30635 19 #define NEAT_GUIS_H
jonebuckman 1:d02971b30635 20
jonebuckman 1:d02971b30635 21 //Abstracts
jonebuckman 1:d02971b30635 22 #include "Canvas.h"
jonebuckman 1:d02971b30635 23 #include "Control.h"
jonebuckman 1:d02971b30635 24 #include "Display.h"
jonebuckman 1:d02971b30635 25 #include "Image.h"
jonebuckman 1:d02971b30635 26
jonebuckman 1:d02971b30635 27 //Controls
jonebuckman 1:d02971b30635 28 #include "Label.h"
jonebuckman 1:d02971b30635 29 #include "ProgressBar.h"
jonebuckman 1:d02971b30635 30
jonebuckman 1:d02971b30635 31 //Decoders
jonebuckman 1:d02971b30635 32 #include "BitmapImage.h"
jonebuckman 1:d02971b30635 33 #include "Font.h"
jonebuckman 1:d02971b30635 34
jonebuckman 1:d02971b30635 35 //Drivers
jonebuckman 1:d02971b30635 36 #include "ILI9341.h"
jonebuckman 3:b5409826d05f 37 #include "SEPS525_SPI.h"
jonebuckman 1:d02971b30635 38 #include "SSD1306_I2C.h"
jonebuckman 1:d02971b30635 39 #include "SSD1306_SPI.h"
jonebuckman 1:d02971b30635 40 #include "SSD1351_SPI.h"
jonebuckman 1:d02971b30635 41 #include "SSD1353_SPI.h"
jonebuckman 1:d02971b30635 42
jonebuckman 1:d02971b30635 43 #endif