PAS CO2 Sensor  1.0.3
C++ library for Infineon Photoacoustic Spectroscopy (PAS) XENSIV™ CO2 miniaturized sensor
pas-co2-pal-pwm-ino.hpp
Go to the documentation of this file.
1 
10 #ifndef PAS_CO2_PAL_PWM_INO_H_
11 #define PAS_CO2_PAL_PWM_INO_H_
12 
13 #include "pas-co2-conf.hpp"
14 
15 #if IS_INTF(PAS_CO2_INTF_PULSE)
16 
17 #include <Arduino.h>
18 #include "pas-co2-pwm-sw.hpp"
19 #include "pas-co2-pal-gpio-ino.hpp"
21 
22 using namespace pasco2;
23 
29 class PWMIno: virtual public PWMSW
30 {
31  public:
32 
33  PWMIno (GPIOIno * const pwmIn,
34  TimerIno * const timer,
35  Mode_t mode);
36 
37  ~PWMIno ();
38 };
39 
42 #endif
43 #endif
PAS CO2 GPIO Arduino PAL.
Mode_t
Measuring Mode.
Definition: pas-co2-pwm-sw.hpp:36
Definition: pas-co2-pal-pwm-ino.hpp:29
PAS CO2 Timer Arduino PAL.
Definition: pas-co2-i2c.hpp:21
Definition: pas-co2-pal-timer-ino.hpp:22
Definition: pas-co2-pal-gpio-ino.hpp:23
PAS CO2 Library Configuration.
PAS CO2 PWM Input Software.
Definition: pas-co2-pwm-sw.hpp:29