Files
IoTManager/src/modules/sensors/UART/Uart.h

9 lines
151 B
C
Raw Normal View History

#pragma once
#ifdef ESP8266
#include <SoftwareSerial.h>
extern SoftwareSerial* myUART;
#else
#include <HardwareSerial.h>
2023-11-17 00:18:23 +03:00
extern Stream* myUART;
#endif