* Hal lfrfid: add read timer pulse and period config fns * New debug application for lfrfid subsystem * New lfrfid: app, fix naming * App lfrfid: assets * Container view module * App ibutton: remove unused header * App lfrfid scenes * App notification, add yield to blocking operations, add speaker volume control * App lfrfid: reading key scene * Assets: placeholder icon * App lfrfid: reworked container view module * App lfrfid: new scenes * App lfrfid: write scene * App lfrfid: write hid * App lfrfid: emulate scene * App lfrfid: save name scene * App lfrfid: add missing file
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "lfrfid-app-scene-write.h"
 | |
| 
 | |
| void LfRfidAppSceneWrite::on_enter(LfRfidApp* app, bool need_restore) {
 | |
|     card_not_supported = false;
 | |
|     string_init(data_string);
 | |
| 
 | |
|     uint8_t* data = app->worker.key.get_data();
 | |
| 
 | |
|     for(uint8_t i = 0; i < app->worker.key.get_type_data_count(); i++) {
 | |
|         string_cat_printf(data_string, "%02X", data[i]);
 | |
|     }
 | |
| 
 | |
|     auto popup = app->view_controller.get<PopupVM>();
 | |
| 
 | |
|     popup->set_header("Writing", 90, 34, AlignCenter, AlignTop);
 | |
|     popup->set_text(string_get_cstr(data_string), 90, 48, AlignCenter, AlignTop);
 | |
|     popup->set_icon(0, 4, I_RFIDDolphinSend_98x60);
 | |
| 
 | |
|     app->view_controller.switch_to<PopupVM>();
 | |
|     app->worker.start_write();
 | |
| }
 | |
| 
 | |
| bool LfRfidAppSceneWrite::on_event(LfRfidApp* app, LfRfidApp::Event* event) {
 | |
|     bool consumed = false;
 | |
| 
 | |
|     if(event->type == LfRfidApp::EventType::Tick) {
 | |
|         RfidWorker::WriteResult result = app->worker.write();
 | |
| 
 | |
|         switch(result) {
 | |
|         case RfidWorker::WriteResult::Nothing:
 | |
|             notification_message(app->notification, &sequence_blink_yellow_10);
 | |
|             break;
 | |
|         case RfidWorker::WriteResult::Ok:
 | |
|             notification_message(app->notification, &sequence_success);
 | |
|             app->scene_controller.switch_to_next_scene(LfRfidApp::SceneType::WriteSuccess);
 | |
|             break;
 | |
|         case RfidWorker::WriteResult::NotWritable:
 | |
|             if(!card_not_supported) {
 | |
|                 auto popup = app->view_controller.get<PopupVM>();
 | |
|                 popup->set_icon(0, 0, I_Empty_1x1);
 | |
|                 popup->set_header("Still trying to write", 64, 7, AlignCenter, AlignTop);
 | |
|                 popup->set_text(
 | |
|                     "This card may be protected\nor does not support this\ntype of writing",
 | |
|                     64,
 | |
|                     23,
 | |
|                     AlignCenter,
 | |
|                     AlignTop);
 | |
|                 card_not_supported = true;
 | |
|             }
 | |
|             notification_message(app->notification, &sequence_blink_red_10);
 | |
|             break;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return consumed;
 | |
| }
 | |
| 
 | |
| void LfRfidAppSceneWrite::on_exit(LfRfidApp* app) {
 | |
|     app->view_controller.get<PopupVM>()->clean();
 | |
|     app->worker.stop_write();
 | |
|     string_clear(data_string);
 | |
| }
 |