#include <TVout.h>
#include <TVoutfonts/fontALL.h>
#include "schematic.h"
#include "TVOlogo.h"
TVout TV;
int zOff = 150;
int xOff = 0;
int yOff = 0;
int cSize = 50;
int view_plane = 64;
float angle = PI / 60;
float cube3d[8][3] = {
{xOff - cSize, yOff + cSize, zOff - cSize},
{xOff + cSize, yOff + cSize, zOff - cSize},
{xOff - cSize, yOff - cSize, zOff - cSize},
{xOff + cSize, yOff - cSize, zOff - cSize},
{xOff - cSize, yOff + cSize, zOff + cSize},
{xOff + cSize, yOff + cSize, zOff + cSize},
{xOff - cSize, yOff - cSize, zOff + cSize},
{xOff + cSize, yOff - cSize, zOff + cSize}
};
unsigned char cube2d[8][2];
void setup() {
TV.begin(PAL, 120, 96);
TV.select_font(font6x8);
intro();
displayText("Ken Ronoh", 0, 40);
}
void loop() {
// Your main loop logic here
}
void displayText(const char* text, int x, int y) {
TV.print(x, y, text);
}
void intro() {
// Your intro animation code here
}