upm  1.7.1
Sensor/Actuator repository for libmraa (v2.0.0)
Public Member Functions

API for the EL Driver Module. More...

Detailed Description

The EL Driver allows you to easily light up an EL wire with just one single cable.

eldriver.jpg
// This was tested with the El Driver Module
// Instantiate an El Driver on digital pin D2
upm::ElDriver eldriver(2);
bool lightState = true;
while (shouldRun) {
if (lightState)
eldriver.on();
else
eldriver.off();
lightState = !lightState;
upm_delay(1);
}

Public Member Functions

 ElDriver (int pin)
 
 ~ElDriver ()
 
void on ()
 
void off ()
 

Constructor & Destructor Documentation

ElDriver ( int  pin)

EL Driver constructor

Parameters
pinDigital pin to use
~ElDriver ( )

EL Driver destructor

Member Function Documentation

void on ( )

Turns the EL wire on

void off ( )

Turns the EL wire off


The documentation for this class was generated from the following files: