├── EasyTransfer ├── I2C_Wiring.png ├── README.txt ├── UARTS_Wiring.png ├── examples │ ├── EasyTransfer_2Way_wPot_Example │ │ └── EasyTransfer_2Way_wPot_Example.ino │ ├── EasyTransfer_2Way_wServo_Example │ │ └── EasyTransfer_2Way_wServo_Example.ino │ ├── EasyTransfer_RX_Example │ │ └── EasyTransfer_RX_Example.ino │ └── EasyTransfer_TX_Example │ │ └── EasyTransfer_TX_Example.ino ├── keywords.txt ├── library.properties └── src │ ├── EasyTransfer.cpp │ └── EasyTransfer.h ├── EasyTransferI2C ├── examples │ ├── EasyTransfer_RX_Example │ │ └── EasyTransfer_RX_Example.ino │ └── EasyTransfer_TX_Example │ │ └── EasyTransfer_TX_Example.ino ├── keywords.txt ├── library.properties └── src │ ├── EasyTransferI2C.cpp │ └── EasyTransferI2C.h ├── EasyTransferVirtualWire ├── EasyTransferVirtualWire.cpp ├── EasyTransferVirtualWire.h ├── examples │ ├── ETVirtualWireDemoRX │ │ └── ETVirtualWireDemoRX.pde │ └── ETVirtualWireDemoTX │ │ └── ETVirtualWireDemoTX.pde └── keywords.txt ├── I2C_Wiring.png ├── README.txt ├── SoftEasyTransfer ├── SoftEasyTransfer.cpp ├── SoftEasyTransfer.h ├── examples │ ├── SoftEasyTransfer_RX_Example │ │ └── SoftEasyTransfer_RX_Example.pde │ └── SoftEasyTransfer_TX_Example │ │ └── SoftEasyTransfer_TX_Example.pde └── keywords.txt └── UARTS_Wiring.png /EasyTransfer/I2C_Wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/I2C_Wiring.png -------------------------------------------------------------------------------- /EasyTransfer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/README.txt -------------------------------------------------------------------------------- /EasyTransfer/UARTS_Wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/UARTS_Wiring.png -------------------------------------------------------------------------------- /EasyTransfer/examples/EasyTransfer_2Way_wPot_Example/EasyTransfer_2Way_wPot_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/examples/EasyTransfer_2Way_wPot_Example/EasyTransfer_2Way_wPot_Example.ino -------------------------------------------------------------------------------- /EasyTransfer/examples/EasyTransfer_2Way_wServo_Example/EasyTransfer_2Way_wServo_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/examples/EasyTransfer_2Way_wServo_Example/EasyTransfer_2Way_wServo_Example.ino -------------------------------------------------------------------------------- /EasyTransfer/examples/EasyTransfer_RX_Example/EasyTransfer_RX_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/examples/EasyTransfer_RX_Example/EasyTransfer_RX_Example.ino -------------------------------------------------------------------------------- /EasyTransfer/examples/EasyTransfer_TX_Example/EasyTransfer_TX_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/examples/EasyTransfer_TX_Example/EasyTransfer_TX_Example.ino -------------------------------------------------------------------------------- /EasyTransfer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/keywords.txt -------------------------------------------------------------------------------- /EasyTransfer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/library.properties -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/src/EasyTransfer.cpp -------------------------------------------------------------------------------- /EasyTransfer/src/EasyTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransfer/src/EasyTransfer.h -------------------------------------------------------------------------------- /EasyTransferI2C/examples/EasyTransfer_RX_Example/EasyTransfer_RX_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferI2C/examples/EasyTransfer_RX_Example/EasyTransfer_RX_Example.ino -------------------------------------------------------------------------------- /EasyTransferI2C/examples/EasyTransfer_TX_Example/EasyTransfer_TX_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferI2C/examples/EasyTransfer_TX_Example/EasyTransfer_TX_Example.ino -------------------------------------------------------------------------------- /EasyTransferI2C/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferI2C/keywords.txt -------------------------------------------------------------------------------- /EasyTransferI2C/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferI2C/library.properties -------------------------------------------------------------------------------- /EasyTransferI2C/src/EasyTransferI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferI2C/src/EasyTransferI2C.cpp -------------------------------------------------------------------------------- /EasyTransferI2C/src/EasyTransferI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferI2C/src/EasyTransferI2C.h -------------------------------------------------------------------------------- /EasyTransferVirtualWire/EasyTransferVirtualWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferVirtualWire/EasyTransferVirtualWire.cpp -------------------------------------------------------------------------------- /EasyTransferVirtualWire/EasyTransferVirtualWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferVirtualWire/EasyTransferVirtualWire.h -------------------------------------------------------------------------------- /EasyTransferVirtualWire/examples/ETVirtualWireDemoRX/ETVirtualWireDemoRX.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferVirtualWire/examples/ETVirtualWireDemoRX/ETVirtualWireDemoRX.pde -------------------------------------------------------------------------------- /EasyTransferVirtualWire/examples/ETVirtualWireDemoTX/ETVirtualWireDemoTX.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferVirtualWire/examples/ETVirtualWireDemoTX/ETVirtualWireDemoTX.pde -------------------------------------------------------------------------------- /EasyTransferVirtualWire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/EasyTransferVirtualWire/keywords.txt -------------------------------------------------------------------------------- /I2C_Wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/I2C_Wiring.png -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/README.txt -------------------------------------------------------------------------------- /SoftEasyTransfer/SoftEasyTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/SoftEasyTransfer/SoftEasyTransfer.cpp -------------------------------------------------------------------------------- /SoftEasyTransfer/SoftEasyTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/SoftEasyTransfer/SoftEasyTransfer.h -------------------------------------------------------------------------------- /SoftEasyTransfer/examples/SoftEasyTransfer_RX_Example/SoftEasyTransfer_RX_Example.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/SoftEasyTransfer/examples/SoftEasyTransfer_RX_Example/SoftEasyTransfer_RX_Example.pde -------------------------------------------------------------------------------- /SoftEasyTransfer/examples/SoftEasyTransfer_TX_Example/SoftEasyTransfer_TX_Example.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/SoftEasyTransfer/examples/SoftEasyTransfer_TX_Example/SoftEasyTransfer_TX_Example.pde -------------------------------------------------------------------------------- /SoftEasyTransfer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/SoftEasyTransfer/keywords.txt -------------------------------------------------------------------------------- /UARTS_Wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/Arduino-EasyTransfer/HEAD/UARTS_Wiring.png --------------------------------------------------------------------------------