mirror of
https://github.com/Genaker/LoraSA.git
synced 2026-07-05 01:12:11 +02:00
17 lines
239 B
C
17 lines
239 B
C
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
#ifdef OSD_ENABLED
|
|
#include "DFRobot_OSD.h"
|
|
|
|
#ifdef WIFI_SCANNING_ENABLED
|
|
void scanWiFi(DFRobot_OSD &osd);
|
|
#endif
|
|
|
|
#ifdef BT_SCANNING_ENABLED
|
|
void scanBT(DFRobot_OSD &osd);
|
|
#endif
|
|
|
|
#endif // OSD_ENABLED
|