Updated to libmDot 1.0.8-1

Dependencies:   DOGS102 GpsParser ISL29011 MMA845x MPL3115A2 MTS-Serial NCP5623B libmDot mbed-rtos mbed

Fork of MTDOT-BOX-EVB-Factory-Firmware by MultiTech

Committer:
jreiss
Date:
Wed Jul 13 19:14:04 2016 +0000
Revision:
6:ab581c4260e7
Parent:
1:71125aa00e33
Use DR enum values instead of SF values

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Mike Fiore 1:71125aa00e33 1 /* Copyright (c) <2016> <MultiTech Systems>, MIT License
Mike Fiore 1:71125aa00e33 2 *
Mike Fiore 1:71125aa00e33 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
Mike Fiore 1:71125aa00e33 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
Mike Fiore 1:71125aa00e33 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
Mike Fiore 1:71125aa00e33 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Mike Fiore 1:71125aa00e33 7 * furnished to do so, subject to the following conditions:
Mike Fiore 1:71125aa00e33 8 *
Mike Fiore 1:71125aa00e33 9 * The above copyright notice and this permission notice shall be included in all copies or
Mike Fiore 1:71125aa00e33 10 * substantial portions of the Software.
Mike Fiore 1:71125aa00e33 11 *
Mike Fiore 1:71125aa00e33 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
Mike Fiore 1:71125aa00e33 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Mike Fiore 1:71125aa00e33 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
Mike Fiore 1:71125aa00e33 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
Mike Fiore 1:71125aa00e33 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Mike Fiore 1:71125aa00e33 17 */
Mike Fiore 1:71125aa00e33 18
Mike Fiore 1:71125aa00e33 19 #ifndef __LAYOUT_H__
Mike Fiore 1:71125aa00e33 20 #define __LAYOUT_H__
Mike Fiore 1:71125aa00e33 21
Mike Fiore 1:71125aa00e33 22 #include "DOGS102.h"
Mike Fiore 1:71125aa00e33 23 #include <string>
Mike Fiore 1:71125aa00e33 24
Mike Fiore 1:71125aa00e33 25 class Label {
Mike Fiore 1:71125aa00e33 26 public:
Mike Fiore 1:71125aa00e33 27 Label(uint8_t col, uint8_t row, std::string value);
Mike Fiore 1:71125aa00e33 28
Mike Fiore 1:71125aa00e33 29 uint8_t _col;
Mike Fiore 1:71125aa00e33 30 uint8_t _row;
Mike Fiore 1:71125aa00e33 31 std::string _value;
Mike Fiore 1:71125aa00e33 32 };
Mike Fiore 1:71125aa00e33 33
Mike Fiore 1:71125aa00e33 34 class Field {
Mike Fiore 1:71125aa00e33 35 public:
Mike Fiore 1:71125aa00e33 36 Field(uint8_t col, uint8_t row, uint8_t maxSize);
Mike Fiore 1:71125aa00e33 37
Mike Fiore 1:71125aa00e33 38 uint8_t _col;
Mike Fiore 1:71125aa00e33 39 uint8_t _row;
Mike Fiore 1:71125aa00e33 40 uint8_t _maxSize;
Mike Fiore 1:71125aa00e33 41 };
Mike Fiore 1:71125aa00e33 42
Mike Fiore 1:71125aa00e33 43 class Image {
Mike Fiore 1:71125aa00e33 44 public:
Mike Fiore 1:71125aa00e33 45 Image(uint8_t col, uint8_t row, const uint8_t* bmp);
Mike Fiore 1:71125aa00e33 46
Mike Fiore 1:71125aa00e33 47 uint8_t _col;
Mike Fiore 1:71125aa00e33 48 uint8_t _row;
Mike Fiore 1:71125aa00e33 49 const uint8_t* _bmp;
Mike Fiore 1:71125aa00e33 50 };
Mike Fiore 1:71125aa00e33 51
Mike Fiore 1:71125aa00e33 52 class Layout {
Mike Fiore 1:71125aa00e33 53 public:
Mike Fiore 1:71125aa00e33 54 Layout(DOGS102* lcd);
Mike Fiore 1:71125aa00e33 55 ~Layout();
Mike Fiore 1:71125aa00e33 56
Mike Fiore 1:71125aa00e33 57 virtual void display() = 0;
Mike Fiore 1:71125aa00e33 58
Mike Fiore 1:71125aa00e33 59 protected:
Mike Fiore 1:71125aa00e33 60 void clear();
Mike Fiore 1:71125aa00e33 61 void startUpdate();
Mike Fiore 1:71125aa00e33 62 void endUpdate();
Mike Fiore 1:71125aa00e33 63 bool writeLabel(const Label& label);
Mike Fiore 1:71125aa00e33 64 bool writeField(const Field& field, const std::string& value, bool apply = false);
Mike Fiore 1:71125aa00e33 65 bool writeField(const Field& field, const char* value, size_t size, bool apply = false);
Mike Fiore 1:71125aa00e33 66 bool writeImage(const Image& image, bool apply = false);
Mike Fiore 1:71125aa00e33 67 void removeField(const Field& field);
Mike Fiore 1:71125aa00e33 68
Mike Fiore 1:71125aa00e33 69 private:
Mike Fiore 1:71125aa00e33 70 bool writeText(uint8_t col, uint8_t row, const char* value, size_t size);
Mike Fiore 1:71125aa00e33 71 bool writeBmp(uint8_t col, uint8_t row, const uint8_t* bmp);
Mike Fiore 1:71125aa00e33 72
Mike Fiore 1:71125aa00e33 73 DOGS102* _lcd;
Mike Fiore 1:71125aa00e33 74 };
Mike Fiore 1:71125aa00e33 75
Mike Fiore 1:71125aa00e33 76 #endif