#include "numeric.h" int s1pins[]={22,24,26,28,30,32,34,36}; Numeric s1( s1pins ); int p=0; void setup() { Serial.begin(9600); } void loop() { s1.showNumber(p); delay(500); p=p+1; if( p>=16 ) { p=0; s1.show('.');delay(500); s1.show('_');delay(500); s1.show('-');delay(500); s1.showLetterAndDot('-');delay(500); s1.showOwnLetter(B10101010);delay(500); } }