2022-01-05 16:10:18 +00:00
|
|
|
#include "../accessor_app.h"
|
|
|
|
#include "../accessor_view_manager.h"
|
|
|
|
#include "../accessor_event.h"
|
2021-04-28 12:13:25 +00:00
|
|
|
#include <callback-connector.h>
|
2022-01-05 16:10:18 +00:00
|
|
|
#include "accessor_scene_start.h"
|
2021-04-28 12:13:25 +00:00
|
|
|
|
|
|
|
void AccessorSceneStart::on_enter(AccessorApp* app) {
|
|
|
|
AccessorAppViewManager* view_manager = app->get_view_manager();
|
|
|
|
Popup* popup = view_manager->get_popup();
|
|
|
|
|
|
|
|
popup_set_header(popup, "Accessor App", 64, 16, AlignCenter, AlignBottom);
|
|
|
|
app->set_text_store("[??????]");
|
|
|
|
popup_set_text(popup, app->get_text_store(), 64, 22, AlignCenter, AlignTop);
|
|
|
|
|
|
|
|
view_manager->switch_to(AccessorAppViewManager::ViewType::Popup);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AccessorSceneStart::on_event(AccessorApp* app, AccessorEvent* event) {
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
if(event->type == AccessorEvent::Type::Tick) {
|
|
|
|
WIEGAND* wiegand = app->get_wiegand();
|
|
|
|
Popup* popup = app->get_view_manager()->get_popup();
|
|
|
|
OneWireMaster* onewire = app->get_one_wire();
|
|
|
|
|
|
|
|
uint8_t data[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
|
|
|
uint8_t type = 0;
|
|
|
|
|
|
|
|
if(wiegand->available()) {
|
|
|
|
type = wiegand->getWiegandType();
|
|
|
|
|
|
|
|
for(uint8_t i = 0; i < 4; i++) {
|
|
|
|
data[i] = wiegand->getCode() >> (i * 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(uint8_t i = 4; i < 8; i++) {
|
|
|
|
data[i] = wiegand->getCodeHigh() >> ((i - 4) * 8);
|
|
|
|
}
|
|
|
|
} else {
|
2022-02-10 11:20:50 +00:00
|
|
|
FURI_CRITICAL_ENTER();
|
2021-04-28 12:13:25 +00:00
|
|
|
if(onewire->reset()) {
|
|
|
|
type = 255;
|
|
|
|
onewire->write(0x33);
|
|
|
|
for(uint8_t i = 0; i < 8; i++) {
|
|
|
|
data[i] = onewire->read();
|
|
|
|
}
|
|
|
|
|
|
|
|
for(uint8_t i = 0; i < 7; i++) {
|
|
|
|
data[i] = data[i + 1];
|
|
|
|
}
|
|
|
|
}
|
2022-02-10 11:20:50 +00:00
|
|
|
FURI_CRITICAL_EXIT();
|
2021-04-28 12:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(type > 0) {
|
|
|
|
if(type == 255) {
|
|
|
|
app->set_text_store(
|
|
|
|
"[%02X %02X %02X %02X %02X %02X DS]",
|
|
|
|
data[5],
|
|
|
|
data[4],
|
|
|
|
data[3],
|
|
|
|
data[2],
|
|
|
|
data[1],
|
|
|
|
data[0]);
|
|
|
|
} else {
|
|
|
|
app->set_text_store(
|
|
|
|
"[%02X %02X %02X %02X %02X %02X W%u]",
|
|
|
|
data[5],
|
|
|
|
data[4],
|
|
|
|
data[3],
|
|
|
|
data[2],
|
|
|
|
data[1],
|
|
|
|
data[0],
|
|
|
|
type);
|
|
|
|
}
|
|
|
|
popup_set_text(popup, app->get_text_store(), 64, 22, AlignCenter, AlignTop);
|
|
|
|
app->notify_success();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AccessorSceneStart::on_exit(AccessorApp* app) {
|
|
|
|
Popup* popup = app->get_view_manager()->get_popup();
|
|
|
|
popup_set_header(popup, NULL, 0, 0, AlignCenter, AlignBottom);
|
|
|
|
popup_set_text(popup, NULL, 0, 0, AlignCenter, AlignTop);
|
2022-02-10 11:20:50 +00:00
|
|
|
}
|