Touchscreen digit recognition.

Dependencies:   mbed TFT_fonts SPI_TFT_ILI9341 Adafruit_GFX FT6206 MMA8451Q

Committer:
atomicle
Date:
Fri Jan 17 08:33:46 2020 +0000
Revision:
2:1ab6ba7c2c90
Project demo finished.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
atomicle 2:1ab6ba7c2c90 1 #pragma once
atomicle 2:1ab6ba7c2c90 2
atomicle 2:1ab6ba7c2c90 3 #include "MMA8451Q.h"
atomicle 2:1ab6ba7c2c90 4
atomicle 2:1ab6ba7c2c90 5 extern MMA8451Q acc;
atomicle 2:1ab6ba7c2c90 6
atomicle 2:1ab6ba7c2c90 7 const int LANDSCAPE = 1;
atomicle 2:1ab6ba7c2c90 8 const int PORTRAIT = 0;
atomicle 2:1ab6ba7c2c90 9
atomicle 2:1ab6ba7c2c90 10 int get_orientation();