f

Dependencies:   mbed 4DGL-uLCD-SE MMA8452

graphics.h

Committer:
dfrausto3
Date:
2022-04-12
Revision:
6:453dc852ac0f
Parent:
5:077b66dfe296

File content as of revision 6:453dc852ac0f:

#ifndef GRAPHICS_H
#define GRAPHICS_H
#include "globals.h"
 

// The bottom of the screen => y=127
// A macro to reverse the coordinate for convenience (optional).
#define REVERSE_Y(x) (SIZE_Y-(x))

/**
 * Draws a sprite
 */
void draw_sprite();
void draw_lower_status();

 
#endif // GRAPHICS_H