Files
Chris 89c875e38f - First complete version of firmware. Currently being tested in the rehearsal room
- Added bunch of screens, fonts and images
 - Added script to read out frame buffer (function currently disabled in Firmware)
2025-10-26 20:57:58 +01:00

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_ */