Skeleton of state machine introduced, Screens created and logos added (init, home, payments, qrcode)

This commit is contained in:
Jens Noack 2025-02-28 08:50:17 +01:00
parent 241540d060
commit 90b894a307
16 changed files with 1991 additions and 42 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,13 @@
#ifndef MAIN_H
#define MAIN_H
typedef enum {
INIT,
WAIT_FOR_COIN,
PROCESS_COIN,
GENERATE_QR,
PAYMENT_CONFIRMED,
ERROR_STATE
} State;
#endif