Files
Arduino-GSM-Chata/lib/Data/PinTypeIn.cpp
T
Ondrej-Trochta e319e2db05 send sms working
2024-05-02 18:35:38 +02:00

10 lines
131 B
C++

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