#include "alfanumeric.h" int s1pins[]={22,24,26,28,30,32,34,36,23,25,27,29,31,33,35,37,39}; Alfanumeric s1( s1pins ); int p='A'; void setup() { Serial.begin(9600); } void loop() { s1.show(p); p=p+1; if( p>'Z')p='0'; if( p>58 && p<'A') { /* //interpunction s1.show('.');delay(500); s1.show('-');delay(500); s1.show('_');delay(500); s1.show('\\');delay(500); s1.show('/');delay(500); s1.show('+');delay(500); s1.show('[');delay(500); s1.show(']');delay(500); s1.show('%');delay(500); s1.show('=');delay(500); s1.show('>');delay(500); s1.show('<');delay(500); s1.show('?');delay(500); s1.show(',');delay(500); s1.show('|');delay(500); s1.show('°');delay(500); s1.show('@');delay(500); s1.showOwnLetter(85162L);delay(500); */ p='A'; } delay(500); }