This repository has been archived on 2020-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
arduino_universal_serial_ad.../Universal_Serial_Adapter/Universal_Serial_Adapter.ino

45 lines
881 B
Arduino
Raw Normal View History

2013-03-10 18:26:41 +00:00
/*
Serial Adapter Project: Dynamic serial TTY passthroughs
by: Mike Crosson
Nusku Networks
date: 2013/03/09
license: CC-BY SA 3.0 - Creative commons share-alike 3.0
use this code however you'd like, just keep this license and
attribute.
*/
2013-03-10 18:26:41 +00:00
#include <Metro.h>
2013-03-10 18:26:41 +00:00
#include "Project.h"
#include "Config.h"
#include "UIButton.h"
#include "UIJoystickPSP.h"
#include "UILCD.h"
2013-04-07 05:32:42 +00:00
#include "UI.h"
2013-04-06 22:44:34 +00:00
#include <Adafruit_GFX.h>
#include <Adafruit_ST7735.h>
#include <SD.h>
#include <SPI.h>
2013-04-07 05:32:42 +00:00
UI* ui;
Config* config;
2013-04-06 22:44:34 +00:00
2013-03-10 18:26:41 +00:00
void setup() {
config = new Config();
config->setDefaults();
2013-04-07 05:32:42 +00:00
ui = new UI(config);
2013-03-10 18:26:41 +00:00
}
void loop() {
2013-04-09 22:11:08 +00:00
// Serial data is processed at multiple points to prevent
// UI code from interfering with communication
config->processSerialData();
2013-04-07 05:32:42 +00:00
ui->processInputEvents();
2013-04-09 22:11:08 +00:00
config->processSerialData();
ui->processTimeoutEvents();
2013-04-09 22:11:08 +00:00
config->processSerialData();
2013-03-10 18:26:41 +00:00
}
2013-04-06 22:44:34 +00:00