Basic example how to use DrawPixel with STM32F746

Dependencies:   BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG mbed

Revision:
1:8a54b7de2617
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Output/Output.h	Wed Feb 21 19:38:50 2018 +0000
@@ -0,0 +1,15 @@
+#ifndef OUTPUT_H
+#define OUTPUT_H
+
+#include "mbed.h"
+class Output
+{
+
+public:
+    bool stato;
+    bool draw_image(const unsigned long* indirizzo_acceso, const unsigned long* indirizzo_spento, bool stato, int off_X, int off_Y);
+    bool trigger;
+private:
+
+};
+#endif