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

52 lines
1,014 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 "Project.h"
#include "UIButton.h"
#include "UIJoystickPSP.h"
#include "UILCD.h"
2013-04-06 22:44:34 +00:00
#include <Adafruit_GFX.h>
#include <Adafruit_ST7735.h>
#include <SD.h>
#include <SPI.h>
UIButton* okButton;
UIButton* cancelButton;
UIJoystickPSP* pspJoystick;
UILCD* lcd;
2013-04-06 22:44:34 +00:00
// Defaults
void setDefaults() {
//FIXME: Re-enable once new LCD is online
//setMode(phone);
//setSelection(phone);
//setLineSpeed(oneNineteenTwoK);
}
2013-03-10 18:26:41 +00:00
void setup() {
Serial.begin(9600);
Serial.println("Setup!");
2013-03-10 18:26:41 +00:00
// Setup defaults
setDefaults();
okButton = new UIButton(okButtonPin, okButtonLed);
cancelButton = new UIButton(cancelButtonPin, cancelButtonLed);
pspJoystick = new UIJoystickPSP(pspXPin, pspYPin);
2013-04-06 22:44:34 +00:00
lcd = new UILCD();
lcd->splashScreen();
2013-03-10 18:26:41 +00:00
}
void loop() {
}
2013-04-06 22:44:34 +00:00