Files
Arduino-GSM-Chata/lib/Data/PinTypeIn.cpp
T
2024-04-24 03:29:50 +02:00

9 lines
130 B
C++

#include <Arduino.h>
#include "PinTypeIn.h"
bool PinTypeIn::IsPinHigh()
{
return digitalRead(_pin) == HIGH ? true : false;
}