You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
331 B

#include "visca-controller.h"
LiquidCrystal_I2C lcd(0x27,16,2);
SoftwareSerial visca(VISCARX, VISCATX);
void setup() {
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
for (uint8_t i = 2; i <= 12; i++) {
pinMode(i,INPUT);
}
}
void loop() {
}