mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-22 10:42:49 +00:00
13 lines
219 B
C
13 lines
219 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "ScanI2C.h"
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
class ScanI2CConsumer
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
ScanI2CConsumer();
|
||
|
|
virtual void i2cScanFinished(ScanI2C *i2cScanner) = 0;
|
||
|
|
};
|
||
|
|
|
||
|
|
void ScanI2CCompleted(ScanI2C *i2cScanner);
|