All pastes #2119401 Raw Edit

Anonymous

public c v1 · immutable
#2119401 ·published 2012-02-18 03:59 UTC
rendered paste body
TVout TV;byte incomingByte;void setup() {  TV.begin(PAL);  TV.delay(1000);    // Serial port enable  Serial.begin(9600);  TV.clear_screen();  TV.select_font(font4x6);  }void loop() {  if(Serial.available()) {    incomingByte = Serial.read();    char letter = (char) incomingByte;    TV.print(letter);  }}