| 1234567891011121314151617181920212223242526272829 |
- #include "flipper_v2.h"
- #include <stdio.h>
- static void state_cb(const void* value, void* ctx) {
- const InputState* state = value;
- printf("state: %02x\n", *state);
- }
- static void event_cb(const void* value, void* ctx) {
- const InputEvent* event = value;
- printf("event: %02x %s\n", event->input, event->state ? "pressed" : "released");
- }
- void application_input_dump(void* p) {
- // open record
- ValueManager* state_record = furi_open("input_state");
- assert(state_record != NULL);
- subscribe_pubsub(&state_record->pubsub, state_cb, NULL);
- PubSub* event_record = furi_open("input_events");
- assert(event_record != NULL);
- subscribe_pubsub(event_record, event_cb, NULL);
- for(;;) {
- delay(100);
- }
- }
|