Differential pressure meter

Dependencies:   TFT_Touch_WaveShare

Revision:
0:619824763516
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/system.h	Tue Apr 03 20:08:35 2018 +0000
@@ -0,0 +1,22 @@
+#ifndef SYSTEM_H
+#define SYSTEM_H
+
+#include <stdint.h>
+
+#define HIGH 1
+#define LOW 0
+
+template<typename T, typename U>
+struct is_same 
+{
+    static const bool value = false; 
+};
+
+template<typename T>
+struct is_same<T,T>  //specialization
+{ 
+   static const bool value = true; 
+};
+
+
+#endif
\ No newline at end of file