mirror of
https://github.com/vladkorotnev/wacca-vfd-arduino.git
synced 2024-11-14 10:07:37 +01:00
12 lines
243 B
C
12 lines
243 B
C
|
#ifndef COIN_H_
|
||
|
#define COIN_H_
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void coin_begin();
|
||
|
void coin_set_callback(void (*fun_ptr)(uint32_t, uint32_t));
|
||
|
void coin_save_if_needed();
|
||
|
uint32_t coin_get();
|
||
|
uint32_t coin_get_amt();
|
||
|
bool coin_reset_if_needed();
|
||
|
|
||
|
#endif
|