├── .gitignore ├── Emu-2-Tech-Guide-1.05.pdf ├── README.md ├── api_classes.py ├── emu-2_product_summary_1.3s.pdf ├── emu.py ├── emu2_datasheet_6.pdf ├── requirements.txt └── sample_xml_commands.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /venv 2 | *.pyc 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Emu-2-Tech-Guide-1.05.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/Emu-2-Tech-Guide-1.05.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/README.md -------------------------------------------------------------------------------- /api_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/api_classes.py -------------------------------------------------------------------------------- /emu-2_product_summary_1.3s.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/emu-2_product_summary_1.3s.pdf -------------------------------------------------------------------------------- /emu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/emu.py -------------------------------------------------------------------------------- /emu2_datasheet_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/emu2_datasheet_6.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_xml_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestautomation/Emu-Serial-API/HEAD/sample_xml_commands.txt --------------------------------------------------------------------------------