* Rfid: indala 40134 validation and decoding * Rfid: show indala info * Rfid: decoder to output comparator signal on gpio pins * Rfid: working indala 40134 decoder * HAL: added function to change rfid timer parameters on the fly * RFID: Indala reading, card detection, card verification * Rfid: indala writing
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "lfrfid-app-scene-read.h"
 | 
						|
 | 
						|
void LfRfidAppSceneRead::on_enter(LfRfidApp* app, bool need_restore) {
 | 
						|
    auto popup = app->view_controller.get<PopupVM>();
 | 
						|
 | 
						|
    popup->set_header("Reading\nLF RFID", 89, 34, AlignCenter, AlignTop);
 | 
						|
    popup->set_icon(0, 3, &I_RFIDDolphinReceive_97x61);
 | 
						|
 | 
						|
    app->view_controller.switch_to<PopupVM>();
 | 
						|
    app->worker.start_read();
 | 
						|
}
 | 
						|
 | 
						|
bool LfRfidAppSceneRead::on_event(LfRfidApp* app, LfRfidApp::Event* event) {
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    if(event->type == LfRfidApp::EventType::Tick) {
 | 
						|
        if(app->worker.read()) {
 | 
						|
            notification_message(app->notification, &sequence_success);
 | 
						|
            app->scene_controller.switch_to_next_scene(LfRfidApp::SceneType::ReadSuccess);
 | 
						|
        } else {
 | 
						|
            if(app->worker.any_read()) {
 | 
						|
                notification_message(app->notification, &sequence_blink_green_10);
 | 
						|
            } else if(app->worker.detect()) {
 | 
						|
                notification_message(app->notification, &sequence_blink_blue_10);
 | 
						|
            } else {
 | 
						|
                notification_message(app->notification, &sequence_blink_red_10);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void LfRfidAppSceneRead::on_exit(LfRfidApp* app) {
 | 
						|
    app->view_controller.get<PopupVM>()->clean();
 | 
						|
    app->worker.stop_read();
 | 
						|
}
 |