mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-04-01 04:49:13 +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 |