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

C++ API for Olimex LoL array. More...

Detailed Description

This file defines the LoL API and implemntation for a simple framebuffer

int
main(int argc, char **argv)
{
sensor = new upm::LoL();
signal(SIGINT, sig_handler);
unsigned char *buffer;
//buffer = sensor->getFramebuffer();
int x = 0, y = 0;
while (!is_running) {
sensor->setPixel(x, y, !(sensor->getPixel(x, y)));
if (++x == 13) { x = 0; y++; }
if (y == 9) y = 0;
usleep(10000);
}
std::cout << "exiting application" << std::endl;
delete sensor;
return 0;
}

Public Member Functions

 LoL ()
 
 ~LoL ()
 
unsigned char * getFramebuffer ()
 
unsigned char getPixel (int x, int y)
 
unsigned char setPixel (int x, int y, unsigned char pixel)
 

Constructor & Destructor Documentation

LoL ( )

Instantiates a LoL object singleton

~LoL ( )

LoL object destructor

Member Function Documentation

unsigned char * getFramebuffer ( )

Get framebuffer pointer

Returns
0 on success
unsigned char getPixel ( int  x,
int  y 
)

Gets pixel at coordinates

Parameters
xcoordinate x
ycoordinate y
Returns
1 if pixel is on, 0 if off, -1 on error
unsigned char setPixel ( int  x,
int  y,
unsigned char  pixel 
)

sets pixel at coordinates

Parameters
xcoordinate x
ycoordinate y
pixel0 is off, 1 is on
Returns
0 on success, -1 on error

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