mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-28 07:20:29 +00:00
14 lines
465 B
C
14 lines
465 B
C
|
#include "../helpers/protocol_support/nfc_protocol_support.h"
|
||
|
|
||
|
void nfc_scene_info_on_enter(void* context) {
|
||
|
nfc_protocol_support_on_enter(NfcProtocolSupportSceneInfo, context);
|
||
|
}
|
||
|
|
||
|
bool nfc_scene_info_on_event(void* context, SceneManagerEvent event) {
|
||
|
return nfc_protocol_support_on_event(NfcProtocolSupportSceneInfo, context, event);
|
||
|
}
|
||
|
|
||
|
void nfc_scene_info_on_exit(void* context) {
|
||
|
nfc_protocol_support_on_exit(NfcProtocolSupportSceneInfo, context);
|
||
|
}
|