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