mirror of
https://github.com/brendanhaines/RasPi.git
synced 2024-11-09 16:44:40 -07:00
18 lines
216 B
C++
18 lines
216 B
C++
#ifndef DSM2_H
|
|
#define DSM2_H
|
|
|
|
class DSM2
|
|
{
|
|
public:
|
|
DSM2( int mode = 1024 );
|
|
|
|
void update();
|
|
int values[7];
|
|
private:
|
|
int fd;
|
|
int valueMask;
|
|
char thisByte, lastByte;
|
|
int data[7];
|
|
};
|
|
|
|
#endif |