flipperzero-firmware/applications/lf-rfid/lf-rfid-app.h

73 lines
2.0 KiB
C
Raw Normal View History

Low frequency RFID app [Read stage] (#385) * App Lfrfid: init * HAL-resources: add external gpios * HAL-pwm: fix frequency calculation * App LFRFID: generic manchester decoder * App LFRFID: em-marine decoder * App iButton: fix dwt timing acquire * App LFRFID: rfid reader * App LFRFID: temporary read keys on read scene * App LFRFID: remove atomic bool init. * App LFRFID: add *.c to build * App LFRFID: unstable HID decoder * App LFRFID: HID-26 reading * HAL OS: disable sleep * App LFRFID: HID-26 reader: remove debug * App LFRFID: static data decoder-analyzer * App LFRFID: very raw Indala decoder * App LFRFID: multiprotocol reader * App LFRFID: more reliable HID decoder * App LFRFID: syntax fix * App LFRFID: simple read scene * Gui: force redraw on screen stream connect * HAL-OS: allow sleep * App LFRFID: notify api, tune view, tune scene * App LFRFID: simple rfid emulator * App LFRFID: more scenes, more reliable EM decoder. * App LFRFID: format fix * App LFRFID: warning fix * Api-hal-resources: add rfid pins, rename external pins * App LFRFID: remove unused emulator * App LFRFID: use new gpio hal api * App accessor: use new ext gpio name * App LFRFID: remove unused emulator * App LFRFID: remove debug gpio * Api-hal-resources: alternate functions init * Api-hal-rfid: new api * Api-hal-ibutton: new api * Api-hal: new headers * App LFRFID: use new api in reader subroutines * App LFRFID: use new api in emulator subroutines * App LFRFID: remove old app * App LFRFID, App iButton: fix memleak * Api-hal-rfid: comments * App LFRFID: pulse joiner helper, it combines pulses of different polarity into one pulse suitable for a timer * App LFRFID: pulse joiner, now can accept only ne pulse * App LFRFID: pulse joiner, fixes * App LFRFID: EM encoder and emulation * App LFRFID: format fixes * App LFRFID: emmarine encoder cleanup * App LFRFID: HID Encoder blank * App LFRFID: Indala Encoder blank
2021-05-04 13:21:16 +00:00
#pragma once
#include <map>
#include <list>
#include "lf-rfid-view-manager.h"
#include "scene/lf-rfid-scene-start.h"
#include "scene/lf-rfid-scene-emulate-indala.h"
#include "scene/lf-rfid-scene-emulate-hid.h"
#include "scene/lf-rfid-scene-emulate-emmarine.h"
#include "scene/lf-rfid-scene-read-normal.h"
#include "scene/lf-rfid-scene-read-indala.h"
#include "scene/lf-rfid-scene-tune.h"
#include "helpers/rfid-reader.h"
#include "helpers/rfid-timer-emulator.h"
class LfrfidApp {
public:
void run(void);
LfrfidApp();
~LfrfidApp();
enum class Scene : uint8_t {
Exit,
Start,
ReadNormal,
ReadIndala,
EmulateIndala,
EmulateHID,
EmulateEM,
Tune,
};
LfrfidAppViewManager* get_view_manager();
void switch_to_next_scene(Scene index);
void search_and_switch_to_previous_scene(std::initializer_list<Scene> scenes_list);
bool switch_to_previous_scene(uint8_t count = 1);
Scene get_previous_scene();
void notify_init();
void notify_green_blink();
void notify_green_on();
void notify_green_off();
char* get_text_store();
uint8_t get_text_store_size();
void set_text_store(const char* text...);
RfidReader* get_reader();
RfidTimerEmulator* get_emulator();
private:
std::list<Scene> previous_scenes_list = {Scene::Exit};
Scene current_scene = Scene::Start;
LfrfidAppViewManager view;
std::map<Scene, LfrfidScene*> scenes = {
{Scene::Start, new LfrfidSceneStart()},
{Scene::ReadNormal, new LfrfidSceneReadNormal()},
{Scene::ReadIndala, new LfrfidSceneReadIndala()},
{Scene::EmulateIndala, new LfrfidSceneEmulateIndala()},
{Scene::EmulateHID, new LfrfidSceneEmulateHID()},
{Scene::EmulateEM, new LfrfidSceneEmulateEMMarine()},
{Scene::Tune, new LfrfidSceneTune()},
};
static const uint8_t text_store_size = 128;
char text_store[text_store_size + 1];
RfidReader reader;
RfidTimerEmulator emulator;
};