mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-04-01 12:59:12 +03:00
9 lines
159 B
C
9 lines
159 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifdef ESP8266
|
||
|
|
#include <SoftwareSerial.h>
|
||
|
|
extern SoftwareSerial* myUART;
|
||
|
|
#else
|
||
|
|
#include <HardwareSerial.h>
|
||
|
|
extern HardwareSerial* myUART;
|
||
|
|
#endif
|