EPD display library.

Dependents:   acd52832_ePaper acd52832_SAADC_Differential_input_2 acd52832_SAADC_Differential_input_EPD acd52832_Car_battery_ch ... more

Fork of GDEP015OC1 by aconno dev team

Files at this revision

API Documentation at this revision

Comitter:
dbartolovic
Date:
Fri Mar 02 15:47:46 2018 +0000
Branch:
BLE-advertising
Parent:
16:637e8c66dee6
Commit message:
Added include guard

Changed in this revision

GDEP015OC1.h Show annotated file Show diff for this revision Revisions of this file
diff -r 637e8c66dee6 -r 9f70a530ab01 GDEP015OC1.h
--- a/GDEP015OC1.h	Tue Jul 04 18:18:38 2017 +0000
+++ b/GDEP015OC1.h	Fri Mar 02 15:47:46 2018 +0000
@@ -1,7 +1,9 @@
 /**
  *  Created by Filip Hormot (f.hormot@gmail.com) on 14/09/16.
  */
-
+#ifndef __GDEP015OC1_H__
+#define __GDEP015OC1_H__
+ 
 #include "mbed.h"
 
 #define BUFFER_SIZE     5000
@@ -48,4 +50,6 @@
         void _sleep(void);            
         unsigned char _pixelConv(unsigned char *data, int i);
         uint8_t _mirrorData(uint8_t data);
-};
\ No newline at end of file
+};
+
+#endif //__GDEP015OC1_H__
\ No newline at end of file