upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for the Grove El Driver Module. More...

Detailed Description

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

// The was tested with the Grove El Driver Module
// Instantiate a Grove El Driver on digital pin D2
bool lightState = true;
while (shouldRun)
{
if (lightState)
eldriver->on();
else
eldriver->off();
lightState = !lightState;
sleep(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 ( )

Turn el wire on

void off ( )

Turn el wire off


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