├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── addon_config.mk ├── docs └── Doxyfile ├── examples ├── basic │ ├── echo │ │ ├── Arduino │ │ │ └── Echo │ │ │ │ └── Echo.ino │ │ ├── README.md │ │ ├── addons.make │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── ofApp.cpp │ │ │ └── ofApp.h │ └── list_devices │ │ ├── README.md │ │ ├── addons.make │ │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h └── intermediate │ ├── buffered_serial_device │ └── line_buffer │ │ ├── Arduino │ │ └── HaikuGenerator │ │ │ └── HaikuGenerator.ino │ │ ├── README.md │ │ ├── addons.make │ │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h │ └── packet_serial_device │ ├── cobs │ ├── Arduino │ │ └── README.md │ ├── README.md │ ├── addons.make │ └── src │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h │ ├── osc │ └── README.md │ └── slip │ ├── Arduino │ └── README.md │ ├── README.md │ ├── addons.make │ └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs ├── ofxSerial │ ├── include │ │ └── ofx │ │ │ └── IO │ │ │ ├── BufferedSerialDevice.h │ │ │ ├── PacketSerialDevice.h │ │ │ ├── SerialDevice.h │ │ │ ├── SerialDeviceUtils.h │ │ │ └── SerialEvents.h │ └── src │ │ ├── BufferedSerialDevice.cpp │ │ ├── SerialDevice.cpp │ │ ├── SerialDeviceUtils.cpp │ │ └── SerialEvents.cpp └── serial │ ├── CHANGELOG.rst │ ├── README.md │ ├── VERSION.md │ ├── include │ └── serial │ │ ├── impl │ │ ├── unix.h │ │ └── win.h │ │ ├── serial.h │ │ └── v8stdint.h │ └── src │ ├── impl │ ├── list_ports │ │ ├── list_ports_linux.cc │ │ ├── list_ports_osx.cc │ │ └── list_ports_win.cc │ ├── unix.cc │ └── win.cc │ └── serial.cc ├── ofxaddons_thumbnail.png └── src └── ofxSerial.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/addon_config.mk -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /examples/basic/echo/Arduino/Echo/Echo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/echo/Arduino/Echo/Echo.ino -------------------------------------------------------------------------------- /examples/basic/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/echo/README.md -------------------------------------------------------------------------------- /examples/basic/echo/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/echo/addons.make -------------------------------------------------------------------------------- /examples/basic/echo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/echo/src/main.cpp -------------------------------------------------------------------------------- /examples/basic/echo/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/echo/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/basic/echo/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/echo/src/ofApp.h -------------------------------------------------------------------------------- /examples/basic/list_devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/list_devices/README.md -------------------------------------------------------------------------------- /examples/basic/list_devices/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/list_devices/addons.make -------------------------------------------------------------------------------- /examples/basic/list_devices/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/list_devices/src/main.cpp -------------------------------------------------------------------------------- /examples/basic/list_devices/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/list_devices/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/basic/list_devices/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/basic/list_devices/src/ofApp.h -------------------------------------------------------------------------------- /examples/intermediate/buffered_serial_device/line_buffer/Arduino/HaikuGenerator/HaikuGenerator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/buffered_serial_device/line_buffer/Arduino/HaikuGenerator/HaikuGenerator.ino -------------------------------------------------------------------------------- /examples/intermediate/buffered_serial_device/line_buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/buffered_serial_device/line_buffer/README.md -------------------------------------------------------------------------------- /examples/intermediate/buffered_serial_device/line_buffer/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/buffered_serial_device/line_buffer/addons.make -------------------------------------------------------------------------------- /examples/intermediate/buffered_serial_device/line_buffer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/buffered_serial_device/line_buffer/src/main.cpp -------------------------------------------------------------------------------- /examples/intermediate/buffered_serial_device/line_buffer/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/buffered_serial_device/line_buffer/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/intermediate/buffered_serial_device/line_buffer/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/buffered_serial_device/line_buffer/src/ofApp.h -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/cobs/Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/cobs/Arduino/README.md -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/cobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/cobs/README.md -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/cobs/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/cobs/addons.make -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/cobs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/cobs/src/main.cpp -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/cobs/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/cobs/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/cobs/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/cobs/src/ofApp.h -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/osc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/osc/README.md -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/slip/Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/slip/Arduino/README.md -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/slip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/slip/README.md -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/slip/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/slip/addons.make -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/slip/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/slip/src/main.cpp -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/slip/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/slip/src/ofApp.cpp -------------------------------------------------------------------------------- /examples/intermediate/packet_serial_device/slip/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/examples/intermediate/packet_serial_device/slip/src/ofApp.h -------------------------------------------------------------------------------- /libs/ofxSerial/include/ofx/IO/BufferedSerialDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/include/ofx/IO/BufferedSerialDevice.h -------------------------------------------------------------------------------- /libs/ofxSerial/include/ofx/IO/PacketSerialDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/include/ofx/IO/PacketSerialDevice.h -------------------------------------------------------------------------------- /libs/ofxSerial/include/ofx/IO/SerialDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/include/ofx/IO/SerialDevice.h -------------------------------------------------------------------------------- /libs/ofxSerial/include/ofx/IO/SerialDeviceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/include/ofx/IO/SerialDeviceUtils.h -------------------------------------------------------------------------------- /libs/ofxSerial/include/ofx/IO/SerialEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/include/ofx/IO/SerialEvents.h -------------------------------------------------------------------------------- /libs/ofxSerial/src/BufferedSerialDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/src/BufferedSerialDevice.cpp -------------------------------------------------------------------------------- /libs/ofxSerial/src/SerialDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/src/SerialDevice.cpp -------------------------------------------------------------------------------- /libs/ofxSerial/src/SerialDeviceUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/src/SerialDeviceUtils.cpp -------------------------------------------------------------------------------- /libs/ofxSerial/src/SerialEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/ofxSerial/src/SerialEvents.cpp -------------------------------------------------------------------------------- /libs/serial/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/CHANGELOG.rst -------------------------------------------------------------------------------- /libs/serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/README.md -------------------------------------------------------------------------------- /libs/serial/VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/VERSION.md -------------------------------------------------------------------------------- /libs/serial/include/serial/impl/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/include/serial/impl/unix.h -------------------------------------------------------------------------------- /libs/serial/include/serial/impl/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/include/serial/impl/win.h -------------------------------------------------------------------------------- /libs/serial/include/serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/include/serial/serial.h -------------------------------------------------------------------------------- /libs/serial/include/serial/v8stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/include/serial/v8stdint.h -------------------------------------------------------------------------------- /libs/serial/src/impl/list_ports/list_ports_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/src/impl/list_ports/list_ports_linux.cc -------------------------------------------------------------------------------- /libs/serial/src/impl/list_ports/list_ports_osx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/src/impl/list_ports/list_ports_osx.cc -------------------------------------------------------------------------------- /libs/serial/src/impl/list_ports/list_ports_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/src/impl/list_ports/list_ports_win.cc -------------------------------------------------------------------------------- /libs/serial/src/impl/unix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/src/impl/unix.cc -------------------------------------------------------------------------------- /libs/serial/src/impl/win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/src/impl/win.cc -------------------------------------------------------------------------------- /libs/serial/src/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/libs/serial/src/serial.cc -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxSerial/HEAD/src/ofxSerial.h --------------------------------------------------------------------------------