
Projet d'interfaçage avec le joystick réalisé par Ronan CHERIAUX
Dependencies: BSP_DISCO_F746NG
drawBitmap.h
- Committer:
- cheriauxlpsesam
- Date:
- 2020-06-26
- Revision:
- 0:1c8761215497
File content as of revision 0:1c8761215497:
#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