- 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)
This commit is contained in:
2025-10-26 20:57:58 +01:00
parent 90bca063e6
commit 89c875e38f
62 changed files with 4668 additions and 489 deletions

30
Firmware/Convert.h Normal file
View File

@@ -0,0 +1,30 @@
/*
* 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_ */