Temporarily backport app updates from apps repo

This commit is contained in:
Willy-JL
2023-11-12 11:06:02 +00:00
parent 79e7f491fe
commit e309fa8a88
1498 changed files with 1325977 additions and 20227 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include <furi.h>
#include <furi_hal.h>
#include "i2cscanner.h"
typedef struct {
uint8_t address_idx;
uint8_t value;
uint8_t recv[2];
bool must_send;
bool sended;
bool error;
i2cScanner* scanner;
} i2cSender;
void i2c_send();
i2cSender* i2c_sender_alloc();
void i2c_sender_free(i2cSender* i2c_sender);