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

44 lines
871 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"
UIButton* okButton;
UIButton* cancelButton;
// 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);
2013-03-10 18:26:41 +00:00
}
void loop() {
if (okButton->isPressed()) {
Serial.println("OK Button Pressed");
}
if (cancelButton->isPressed()) {
Serial.println("Cancel button pressed");
}
2013-03-10 18:26:41 +00:00
}