Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed FXOS8700CQ mbed-rtos
Diff: Characters/Bulbasaur.h
- Revision:
- 2:464c7e62d97d
- Child:
- 10:adff3c804985
diff -r 61b67654ffb7 -r 464c7e62d97d Characters/Bulbasaur.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Characters/Bulbasaur.h Wed Apr 03 03:06:00 2019 +0000
@@ -0,0 +1,25 @@
+#ifndef BULBASAUR_H
+#define BULBASAUR_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Bulbasaur
+{
+
+public:
+ Bulbasaur();
+ ~Bulbasaur();
+
+ void draw_cha1_sprite(int pos_x,int pos_y,N5110 &lcd);
+ void description(Gamepad &pad, N5110 &lcd);
+
+private:
+
+ int _pos_x;
+ int _pos_y;
+
+};
+
+#endif
\ No newline at end of file