arduino stuffs
1
2
3
4
5
6
7
8
9
10
#include "display/display.h"
#include "player.h"

void setup() {
  Serial.begin(9600);
  OLED::begin();
  Player::begin();
}

void loop() {}