Link Search Menu Expand Document

Hello World

Your first program on the pokitto in a simpler way

main.cpp

#include "Pokitto.h"

void init() {
    //Here put any code you want to execute at startup
}

void update() {
    //This should be executed at the required FPS
    using PD = Pokitto::Display;
    PD::print("hello world");
}

Copyright © 2020 Pokitto Oy.