mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
18 lines
319 B
C
18 lines
319 B
C
#pragma once
|
|
#include "Consts.h"
|
|
#ifdef uartEnable
|
|
#include "SoftwareSerial.h"
|
|
|
|
#ifdef ESP8266
|
|
#include <SoftwareSerial.h>
|
|
extern SoftwareSerial* myUART;
|
|
#else
|
|
#include <HardwareSerial.h>
|
|
extern HardwareSerial* myUART;
|
|
#endif
|
|
|
|
|
|
extern void uartInit();
|
|
extern void uartHandle();
|
|
extern void parse(String& incStr);
|
|
#endif |