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

API for the Grove EL Driver Module. More...

Detailed Description

Deprecated:
This class is being replaced by ElDriver

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

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

Public Member Functions

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

Constructor & Destructor Documentation

GroveElDriver ( int  pin)

Grove EL Driver constructor

Parameters
pinDigital pin to use

Grove 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: