mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
11 lines
230 B
C
11 lines
230 B
C
|
#include <furi.h>
|
||
|
#include <furi_hal.h>
|
||
|
#include <gui/gui.h>
|
||
|
|
||
|
#include "../i2cscanner.h"
|
||
|
|
||
|
#define SCAN_MENU_TEXT "Scan"
|
||
|
#define SCAN_MENU_X 75
|
||
|
#define SCAN_MENU_Y 6
|
||
|
|
||
|
void draw_scanner_view(Canvas* canvas, i2cScanner* i2c_scanner);
|