- Added bunch of screens, fonts and images - Added script to read out frame buffer (function currently disabled in Firmware)
31 lines
732 B
C
31 lines
732 B
C
/*
|
|
* Convert.h
|
|
*
|
|
* Created: Tue Feb 22 2022 20:31:26
|
|
* Author Chris
|
|
*/
|
|
#ifndef CONVERT_H_
|
|
#define CONVERT_H_
|
|
|
|
// ============================================================================================
|
|
// Includes
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
// ============================================================================================
|
|
// Defines
|
|
|
|
|
|
// ============================================================================================
|
|
// Datatypes
|
|
|
|
|
|
// ============================================================================================
|
|
// Function Declarations
|
|
int Convert_Char_To_Number(char input);
|
|
int Convert_CharArray_To_Number(char input[], int length);
|
|
|
|
|
|
#endif /* CONVERT_H_ */
|