Redesigned main menu. Moved stuff from pixytest to a new helper file and to the new "photo mode"-screen.

This commit is contained in:
t-moe
2015-05-15 20:21:15 +02:00
parent 85f1aeeb28
commit 27c09bad0d
7 changed files with 422 additions and 162 deletions

10
common/app/pixy_helper.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef PIXY_HELPER_H
#define PIXY_HELPER_H
#include <stdbool.h>
#include <stdint.h>
int pixy_render_full_frame(uint16_t x, uint16_t y);
int pixy_render_cropped_frame(uint16_t x, uint16_t y, uint16_t xoffset, uint16_t yoffset, uint16_t width, uint16_t height);
#endif /* PIXY_HELPER_H */