This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//////////////////////////////// FRONT - END COMPILER | |
// scan tokens | |
function scan(sourceCode) { | |
const tokens = sourceCode.split(' ') | |
return tokens | |
} | |
const INT_TOKEN = 1 | |
const OPERATION_TOKEN = 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Adafruit_GFX.h> | |
#include <Adafruit_ST7789.h> | |
#define TFT_DC D1 // GPIO 5 | |
#define TFT_RST D2 // GPIO 4 | |
#define TFT_CS -1 | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> |