Dependencies:   BSP_DISCO_F746NG

Revision:
0:1c8761215497
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/drawBitmap.h	Fri Jun 26 09:17:35 2020 +0000
@@ -0,0 +1,17 @@
+#ifndef __DRAW_BITMAP
+#define __DRAW_BITMAP
+
+#include "mbed.h"
+
+  /** Dessine une Bitmap sur l'écran
+    *
+    *  @param Xpos position X sur l'écran
+    *  @param Ypos position Y sur l'écran
+    *  @param pbmp pointeur vers les données du Bitmap
+    *  @param transparent affichage ou non des pixels transparents    
+    */
+   
+void drawBitmap(int Xpos, int Ypos, const uint8_t *pbmp, bool transparent = true);
+
+#endif
+