int value = 12547;
#include "frame.h"
unsigned long hodnota = 3157927134;
float speed = 32.14;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
tlacitln(value);
tlacitln(hodnota);
tlacitln(speed);
tlacitln("");
tlacitln("Hello!");
tlacit("Here ");
tlacit("is ");
tlacit("multiple calls to ");
tlacit("the same function to ");
tlacitln("make one sentence or row of text.");
}
void loop() {
// put your main code here, to run repeatedly:
}