windows build wip

This commit is contained in:
Kevin Hester 2021-05-25 03:38:06 +08:00
parent 449a3959b0
commit 26bb4ffe79
3 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,7 @@
* install python
* install git (including git-bash)
* install platformio
* install vscode
* install https://sourceforge.net/projects/mingw-w64/ (for windows gcc/g++) - you'll need to add the bin directory to your PATH

View File

@ -4,6 +4,9 @@
#include <assert.h>
#include <sys/time.h>
#include <time.h>
#include <cstring>
using namespace std;
/**
* A printer that doesn't go anywhere

View File

@ -1,5 +1,6 @@
#pragma once
#include <string.h>
#include <cstring>
#include <OLEDDisplayUi.h>
@ -26,6 +27,8 @@
#define BRIGHTNESS_DEFAULT 150
#endif
using namespace std;
namespace graphics
{