mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 17:45:49 +00:00
Were changed to be able to test the PlatformIO feature to compile only files that are actually used. Apparently the Arduino IDE cannot find the files anymore because that IDE needs the parent directory to be named as the main project file, not "src"
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
/*-------------------------------------------------------------------------
|
|
Arduino library to ...
|
|
|
|
Written by Jochen Krapf,
|
|
contributions by ... and other members of the open
|
|
source community.
|
|
|
|
-------------------------------------------------------------------------
|
|
This file is part of the MechInputs library.
|
|
|
|
MechInputs is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as
|
|
published by the Free Software Foundation, either version 3 of
|
|
the License, or (at your option) any later version.
|
|
|
|
MechInputs is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with MechInputs. If not, see
|
|
<http://www.gnu.org/licenses/>.
|
|
-------------------------------------------------------------------------*/
|
|
|
|
#ifndef _SENSORSERIAL_H_
|
|
#define _SENSORSERIAL_H_
|
|
|
|
#include "Arduino.h"
|
|
#include <ESPeasySoftwareSerial.h>
|
|
|
|
class SensorSerial : public ESPeasySoftwareSerial
|
|
{
|
|
public:
|
|
SensorSerial(int receivePin, int transmitPin = -1, bool inverse_logic = false, unsigned int buffSize = 64);
|
|
|
|
void begin(long speed);
|
|
|
|
int peek();
|
|
|
|
virtual size_t write(uint8_t byte);
|
|
|
|
virtual int read();
|
|
|
|
virtual int available();
|
|
|
|
virtual void flush();
|
|
|
|
protected:
|
|
boolean _hw;
|
|
};
|
|
|
|
#endif
|