d3ff787864
* GUI: abolish API injection into instances. Update usage by 3rd party apps. * GUI: update documentation. Cleanup api usage. Adjust status bar item spacing.
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
#pragma once
|
|
#include "ibutton.h"
|
|
#include "cyfral_reader.h"
|
|
|
|
class AppiButtonModeCyfralRead : public AppTemplateMode<AppiButtonState, AppiButtonEvent> {
|
|
public:
|
|
const char* name = "cyfral read";
|
|
AppiButton* app;
|
|
CyfralReader* reader;
|
|
|
|
void event(AppiButtonEvent* event, AppiButtonState* state);
|
|
void render(Canvas* canvas, AppiButtonState* state);
|
|
void acquire();
|
|
void release();
|
|
|
|
AppiButtonModeCyfralRead(AppiButton* parent_app) {
|
|
app = parent_app;
|
|
reader = new CyfralReader(ADC1, ADC_CHANNEL_14);
|
|
};
|
|
};
|
|
|
|
void AppiButtonModeCyfralRead::event(AppiButtonEvent* event, AppiButtonState* state) {
|
|
if(event->type == AppiButtonEvent::EventTypeTick) {
|
|
uint8_t data[8];
|
|
if(reader->read(data, 4)) {
|
|
memcpy(app->state.cyfral_address[app->state.cyfral_address_index], data, 4);
|
|
app->blink_green();
|
|
}
|
|
} else if(event->type == AppiButtonEvent::EventTypeKey) {
|
|
if(event->value.input.state && event->value.input.input == InputUp) {
|
|
app->decrease_cyfral_address();
|
|
}
|
|
|
|
if(event->value.input.state && event->value.input.input == InputDown) {
|
|
app->increase_cyfral_address();
|
|
}
|
|
}
|
|
}
|
|
|
|
void AppiButtonModeCyfralRead::render(Canvas* canvas, AppiButtonState* state) {
|
|
canvas_set_font(canvas, FontSecondary);
|
|
canvas_draw_str(canvas, 2, 25, "< Cyfral read >");
|
|
|
|
app->render_cyfral_list(canvas, state);
|
|
}
|
|
|
|
void AppiButtonModeCyfralRead::acquire() {
|
|
reader->start();
|
|
}
|
|
|
|
void AppiButtonModeCyfralRead::release() {
|
|
reader->stop();
|
|
} |