16x2 easyC LCD Library 1.0.0
This is a library for the 16x2 easyC LCD Module
Loading...
Searching...
No Matches
Generic-easyC-SOLDERED.h
Go to the documentation of this file.
1
11
12#ifndef __SENSOR__
13#define __SENSOR__
14
15#include "Arduino.h"
17
18class Sensor : public EasyC
19{
20 public:
26 Sensor(int _pin);
27
28 protected:
32 void initializeNative();
33
34 private:
35 int pin;
36};
37
38#endif
EasyC()
Main constructor for easyC version.
Definition easyC.hpp:28
int pin
Definition Generic-easyC-SOLDERED.h:35
Sensor(int _pin)
Sensor specific native constructor.
Definition Generic-easyC-SOLDERED.cpp:16
void initializeNative()
Overloaded function for virtual in base class to initialize sensor specific.
Definition Generic-easyC-SOLDERED.cpp:22
Basic funtions for easyC libraries.