Skip to content

Commit 4a6bdb0

Browse files
committed
V0.08
Shoebox kiosk added
1 parent 6313523 commit 4a6bdb0

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

LEDMatrix/readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ More 8x8 icons are found <a href="http://graphicriver.net/item/nano-icons-8x8/44
44
<li>matrixMaster contains a sketch that allows a master IIC device to write to the 8x8 matrix <br>
55
The master writes 8 rows of data to the slave. Each row is 1 byte in size.</li>
66
<li>matrixSlave contains the sketch that is loaded into the slave device<br>
7-
The slave reads the data using the Wire library and sets the leds appropriately. </li>
7+
The slave reads the data using the Wire library and sets the leds appropriately.
8+
You will not need to change the slave code, unless you want the device to be stand alone </li>
89
</ul>

ShoeboxKiosk/Front.JPG

92.1 KB
Loading

Kiosk/Kiosk.ino renamed to ShoeboxKiosk/Kiosk.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <SPI.h>
44
#include <Wire.h>
55
#include <ArduinoNunchuk.h>
6-
6+
#include <MemoryFree.h>
77

88
#define TWENTYXFOUR
99
#ifdef TWENTYXFOUR
@@ -108,7 +108,8 @@ void setup()
108108
{
109109
Serial.begin (115200);
110110
nunchuk.init();
111-
111+
Serial.print ( "RAM free: " );
112+
Serial.println ( freeMemory() );
112113
delay(10);
113114
lcd.begin(COLUMNS, ROWS); // Specify how many columns and rows in the LCD unit
114115
delay(10);

ShoeboxKiosk/Parts.JPG

87.4 KB
Loading

ShoeboxKiosk/readme.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Inspired by a elementary school project, this shoebox kiosk allows you to <br>
2+
display text data to a user via a 4x20 character, blue backlit LCD display.<br>
3+
<br>
4+
Over 20000 characters can be displayed by using the flash memory which is over <br>
5+
250 distinct pages.<br>
6+
The nunchuk control allows the user to page through the data.
7+
<br>
8+
This is a fully assembled functional kit ready to be filled by you with useful information. <br>
9+
You get:
10+
<ul>
11+
<li>4x20 LCD Display with shield</li>
12+
<li>Nunchuk Control with shield</li>
13+
<li>4xAA battery holder with case</li>
14+
<li>DIY Arduino to drive the display</li>
15+
<li>cp2101 usb to serial programmer</li>
16+
</ul>

0 commit comments

Comments
 (0)