diff --git a/inkscape_driver/eggbot.inx b/inkscape_driver/eggbot.inx index 968f6b0..608ca5f 100755 --- a/inkscape_driver/eggbot.inx +++ b/inkscape_driver/eggbot.inx @@ -104,7 +104,7 @@ selected number, which can be up to 100. <_param name="instructions_general" type="description" xml:space="preserve"> EggBot Control Inkscape extension http://www.egg-bot.com/ -(Preview version 9/9/2010-D) +(Preview version 9/12/2010-A) *Motor wiring should be (L-R): Grey-Green-Yellow-Pink, for both motors diff --git a/inkscape_driver/eggbot.py b/inkscape_driver/eggbot.py index 2a2a990..40a642d 100755 --- a/inkscape_driver/eggbot.py +++ b/inkscape_driver/eggbot.py @@ -1048,12 +1048,14 @@ class EggBot( inkex.Effect ): for strComPort in eggbot_scan.findEiBotBoards(): serialPort = self.testSerialPort( strComPort ) if serialPort != None: + self.svgSerialPort = strComPort return serialPort # Try any likely ports for strComPort in eggbot_scan.findPorts(): serialPort = self.testSerialPort( strComPort ) if serialPort != None: + self.svgSerialPort = strComPort return serialPort return None