TinyShield Matrix LEDs (HCTICI0033 - 35)

TinyCircuits product range including TindyDuino and TinyLili.
Post Reply
andrew
Site Admin
Posts: 1374
Joined: Sun Aug 05, 2012 4:15 pm

TinyShield Matrix LEDs (HCTICI0033 - 35)

Post by andrew » Wed Oct 07, 2015 1:06 pm

Image


Image

The TinyShield Matrix LED Boards is a 6 x 9 grid of LEDs (54 total LEDs) that are individually addressable, which lets you scroll text, draw images and all sorts of other things. This TinyShield is compatible with the popular Arduino LoL Shield Library (Lots of LEDs Shield) created by Jimmie Rodgers.

The LEDs are arranged using Charlieplexing, which is a technique to allow for control of multiple LEDs using fewer I/O signals. Available with Red, Green and Amber LED colour options.

See our Tiny Circuits Range Here.




Image

54 Top Facing LEDs in a 6×9 Matrix
Ultra compact size and weight (smaller than a US Quarter!)
Square Version: 20mm x 20mm (.787 inches x .787 inches)
Max Height (from lower bottom TinyShield Connector to upper top of LEDs): 4.6mm (.181 inches)
Weight: TBD grams (TBD ounces)
Arduino pins 2, 3, 4, 5, 6, 7, 8, and 9 are used by this shield



Image

Code: Select all

/*
  TEXT SAMPLE CODE for LOL Shield for Arduino
  Copyright 2009/2010 Benjamin Sonntag <benjamin@sonntag.fr> http://benjamin.sonntag.fr/
  
  History:
  	2009-12-31 - V1.0 FONT Drawing, at Berlin after 26C3 ;) 

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330,
  Boston, MA 02111-1307, USA.
*/

#include "Charliplexing.h"
#include "Font.h"

#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif


/* -----------------------------------------------------------------  */
/** MAIN program Setup
 */
void setup()                    // run once, when the sketch starts
{
  LedSign::Init();
}


/* -----------------------------------------------------------------  */
/** MAIN program Loop
 */
static const char test[]="HELLO WORLD!   ";

void loop()                     // run over and over again
{

    for (int8_t x=DISPLAY_COLS, i=0;; x--) {
	LedSign::Clear();
        for (int8_t x2=x, i2=i; x2<DISPLAY_COLS;) {
	    int8_t w = Font::Draw(test[i2], x2, 0);
	    x2 += w, i2 = (i2+1)%strlen(test);
	    if (x2 <= 0)	// off the display completely?
		x = x2, i = i2;
	}
        delay(80);
    }
}

Image
HCTICI0033-35_Schematic.pdf
The TinyShield Matrix LED shield can use the LOLShield library from Jimmie Rodgers:http://jimmieprodgers.com/kits/lolshieldwith two modifications. The number of rows is different and the LED mapping is different.

You can download a premodified version of this library here:
LoLShield.zip
You do not have the required permissions to view the files attached to this post.
Comments made by this poster do not necessarily reflect the views of Hobby Components Ltd.

Post Reply

Return to “TinyCircuits”