-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
31 lines (25 loc) · 1.38 KB
/
README
File metadata and controls
31 lines (25 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
DuinoCube Library
=================
By Simon Que
Contains the Arduino library for DuinoCube, plus all related software code.
Contents:
DuinoCube/ Arduino library for using DuinoCube. In the Arduino editor, add
this library to the Arduino environment using Sketch -> Import
Library -> Add library.
DuinoCube/examples/
Sample Arduino sketches that test the various parts of DuinoCube
as well as DuinoCube as a whole. Use them as an example for
writing your own apps.
firmware/ Code that runs on the DuinoCube coprocessor. There is no need to
deal with this code unless you want to customize the coprocessor.
When building, make sure to add the DuinoCube/ folder as an
include path.
utils/ Tools for game development with DuinoCube. Includes programs such
as:
- bin2c: Converts a file's data into a C array. No longer
useful for DuinoCube if you have the SD card feature.
- bmp2raw: Converts a bitmap file to raw pixel data and palette
data. Compile with EasyBMP library in third-party
repo.
- tmx2dat: Converts Tiled map files (TMX) to raw tile map files.
Compile with TmxParser library in third-party repo.