Files

copied
Last update 2 years 9 months by eddyluursema
FilesDCCplusplusDCCpp_Uno_VT100
..
Accessories.cpp
Accessories.h
Comm.h
Config.h
CurrentMonitor.cpp
CurrentMonitor.h
DCCpp_Uno.h
DCCpp_Uno_VT100.ino
EEStore.cpp
EEStore.h
Outputs.cpp
Outputs.h
PacketRegister.cpp
PacketRegister.h
Sensor.cpp
Sensor.h
SerialCommand.cpp
SerialCommand.h
Comm.h
/********************************************************************** Comm.h COPYRIGHT (c) 2013-2016 Gregg E. Berman Part of DCC++ BASE STATION for the Arduino **********************************************************************/ #include "Config.h" #if COMM_TYPE == 1 // Ethernet Shield Card Selected #if COMM_INTERFACE == 1 #define COMM_SHIELD_NAME "ARDUINO-CC ETHERNET SHIELD (WIZNET 5100)" #include <Ethernet.h> // built-in Arduino.cc library #elif COMM_INTERFACE == 2 #define COMM_SHIELD_NAME "ARDUINO-ORG ETHERNET-2 SHIELD (WIZNET 5500)" #include <Ethernet2.h> // https://github.com/arduino-org/Arduino #elif COMM_INTERFACE == 3 #define COMM_SHIELD_NAME "SEEED STUDIO ETHERNET SHIELD (WIZNET 5200)" #include <EthernetV2_0.h> // https://github.com/Seeed-Studio/Ethernet_Shield_W5200 #endif extern EthernetServer INTERFACE; #endif
Report a bug