aboutsummaryrefslogtreecommitdiff
path: root/Arduino/Libraies/AS1107/AS1107.h
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2011-09-07 13:48:30 +0100
committerChristopher Baines <cbaines8@gmail.com>2011-09-07 13:48:30 +0100
commit89557022d57e3d72ea9021691d70c80763fa31b6 (patch)
tree61bd043f795976f33eef546ca783194374f12c8b /Arduino/Libraies/AS1107/AS1107.h
parentba3448fb8093afd9d298cef1123a1bedfea13999 (diff)
downloadpunchingbag-89557022d57e3d72ea9021691d70c80763fa31b6.tar
punchingbag-89557022d57e3d72ea9021691d70c80763fa31b6.tar.gz
Modified libary to avoid changing size values. This can now be done from the constructor.
Diffstat (limited to 'Arduino/Libraies/AS1107/AS1107.h')
-rwxr-xr-xArduino/Libraies/AS1107/AS1107.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Arduino/Libraies/AS1107/AS1107.h b/Arduino/Libraies/AS1107/AS1107.h
index 80b01da..7e9b2ab 100755
--- a/Arduino/Libraies/AS1107/AS1107.h
+++ b/Arduino/Libraies/AS1107/AS1107.h
@@ -36,7 +36,7 @@ class AS1107
void WriteRegister2(byte chip, byte reg, byte data);
void WriteRegister(byte chip, byte reg, byte data);
void WriteColumn( byte column, byte data);
- void Init(byte *buffer);
+ void Init(byte *buffer, byte Maxx, byte Maxy, byte cNum);
void SetBuffer(byte *buffer);
void SetLed(int x, int y, byte value);
void Clear();
@@ -59,9 +59,9 @@ class AS1107
// ***************************************
// Set your module configuration here
// ***************************************
- static const byte Maxx=8; // maximum x - Pixels of the Module
- static const byte Maxy=19; // maximum y - Pixels of the Module
- static const byte HighestCtrlNum=5; // Number of Matrix modules -1 (0 = single module)
+ byte Maxx; // maximum x - Pixels of the Module
+ byte Maxy; // maximum y - Pixels of the Module
+ byte HighestCtrlNum; // Number of Matrix modules -1 (0 = single module)
private:
byte _cspin;