├── .gitignore ├── README.md ├── serial_to_ethernet └── serial_to_ethernet.ino └── tools ├── dummy_device.py └── udp_scan.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepansnigirev/ArduinoSerialToEthernet/HEAD/README.md -------------------------------------------------------------------------------- /serial_to_ethernet/serial_to_ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepansnigirev/ArduinoSerialToEthernet/HEAD/serial_to_ethernet/serial_to_ethernet.ino -------------------------------------------------------------------------------- /tools/dummy_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepansnigirev/ArduinoSerialToEthernet/HEAD/tools/dummy_device.py -------------------------------------------------------------------------------- /tools/udp_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepansnigirev/ArduinoSerialToEthernet/HEAD/tools/udp_scan.py --------------------------------------------------------------------------------