<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://forum.robosavvy.com/feed.php?f=4&amp;t=4154" />

<title>RoboSavvy Forum</title>
<subtitle>Robosavvy Forum: The largest online community of Humanoid Robot Builders</subtitle>
<link href="http://forum.robosavvy.com/index.php" />
<updated>2009-12-04T14:15:49+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=4&amp;t=4154</id>
<entry>
<author><name><![CDATA[jorge]]></name></author>
<updated>2009-12-04T14:15:49+01:00</updated>
<published>2009-12-04T14:15:49+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23471#p23471</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23471#p23471"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23471#p23471"><![CDATA[
Wow, yes, there are a lot of examples in the 1.1.3 pdf (I had 1.1.2)... Thanks a lot!<br /><br />I'll try now the serial monitor and see if I can solve all the problems this afternoon and make it work. But with the examples from the pdf I have all the info I need.<br /><br />Now I receive signals from the VRbot module... It simply was not specting me to speak, that's why it did not send anything. Now it seems to recognize the signals and I configured some thins without the VRbot GUI (better for me, as I have to use linux most of the time)... <br /><br />I will continue working on it...<br /><br />Thanks again!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1805">jorge</a> — Fri Dec 04, 2009 2:15 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-12-04T12:01:36+01:00</updated>
<published>2009-12-04T12:01:36+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23463#p23463</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23463#p23463"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23463#p23463"><![CDATA[
Hi<br /><br />I would recommend that you use a Serial Port Monitor/Sniffer to analyse what's coming back and forth in Hex format (to make sure it's working properly).<br />I'm not sure but I believe the one I've used before is the one from HHD which you can find here <!-- m --><a class="postlink" href="http://www.hhdsoftware.com/Downloads/serial-monitor-lite.html">http://www.hhdsoftware.com/Downloads/se ... -lite.html</a><!-- m --><br /><br /><br />In addition, I recommend that you get the latest version (v 1.3) of the VRBot Protocol Manual here <!-- m --><a class="postlink" href="http://robosavvy.com/store/product_info.php/products_id/571">http://robosavvy.com/store/product_info ... cts_id/571</a><!-- m --><br /><br />This new version (1.3) of the Protocol Manual includes <span style="font-weight: bold">very thorough samples for VRbot operations such as SI recognition, SD recognition, recording new SD commands, etc.</span><br />I'm confident you will find this new information very helpful.<br /><br />Regards<br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Fri Dec 04, 2009 12:01 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[jorge]]></name></author>
<updated>2009-12-04T00:00:21+01:00</updated>
<published>2009-12-04T00:00:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23455#p23455</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23455#p23455"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23455#p23455"><![CDATA[
Hi all!<br /><br />I'm new to this forum and nearly a newbie in robot programmming. I registered because I started recently to work with the VRBot module and it seems it's still not documented enough in the webpage (VeeaR.eu)<br /><br />My main problem is I am not using VRBot with robonova, but to add voice reconition control to my master thesis project in the University (TKK, in Finland). So, I use a serial port connection to an 8-Bit AT90CAN128 microcontroller.<br /><br />Everything seems to go well with the voice recognition. I've teached some commands and it seems to recognize them. I also tested with hyperterminal that it works, giving the signals 'w' (so it's awake) and 'x' when typing 'x'.<br /><br />The problem is with hyperterminal (or any other terminal I've tried so far) you can't see the signals that the VRBot module is actually understanding. That is, you say the trigger word and 2 secons later an instruction, but the serial port does not read anything. The problem is I need to know which are these signals to implement the code in the microcontroller. <br /><br />I got the code from the VRGui, and this is one part of it:<br /><br />CONST GROUP_0  = 0    '(Command count: 1)<br /><br />CONST G0_SUPPORT                          = 0<br /><br />CONST GROUP_1  = 1    '(Command count: 1)<br /><br />CONST G1_TIGHTEN                          = 0<br /><br />CONST GROUP_2  = 2    '(Command count: 6)<br /><br />CONST G2_ZERO                             = 0<br />CONST G2_ONE                              = 1<br />CONST G2_TWO                              = 2<br />CONST G2_THREE                            = 3<br />CONST G2_FOUR                             = 4<br />CONST G2_FIVE                             = 5<br /><br />So, I created 1 instruction for group 0 (trigger), 1 for group 1 (tighten) and 6 for group 2 (zero, one, two, three, four and five).<br /><br />Reading the code I also got this:<br /><br />' Inputs:<br />' VRA1 = wordset (0=trigger)<br />' Ouputs:<br />'VRA1 = result (0-31=word, 32..=builtin, 254=timeout, 255=error)<br />'for trigger N&gt;1 are custom words<br /><br />So, the instructions given to the VRBot to the microcontroller are CHAR type (in C) and a number between 0 and 31?<br /><br />As this characters in ASCII code are not printable, this would explain why they are not seen in the terminal. Am I right?<br /><br />Would then the microcontroller understand these signals if they were read from the serial port and then converted to binary (since a &quot;char&quot; won't work as they are not printable characters)?<br /><br />This problem is mainly caused because I can only connect one serial bus to the microcontroller, so if I connect it to the VRBot module, I can't monitorize it with a terminal.<br /><br /><br />Thanks in advance!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1805">jorge</a> — Fri Dec 04, 2009 12:00 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-30T11:25:29+01:00</updated>
<published>2009-11-30T11:25:29+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23353#p23353</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23353#p23353"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23353#p23353"><![CDATA[
Hi Gort <br /><br />Thank you very much for the information.<br /><br />I will let the manufacturer know as this is currently the only issue with the VRbot gui at this point. (downloading the bridge program to a Robonova on Win 7 using an ATEN serial adapter).<br /><br />As a temporary solution for this issue of using Win7+ATEN usb adapter you can do 2 things:<br />1) Use RoboBASIC to download the bridge program to Robonova and then connect to the Robot using the VRbot GUI.<br />2) Use a different usb to serial adapter (one not from ATEN)<br /><br />I will also look up your post about Robobasic and Win7 to forward to them.<br /><br />Thank you very much<br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Mon Nov 30, 2009 11:25 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2009-11-29T03:53:24+01:00</updated>
<published>2009-11-29T03:53:24+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23297#p23297</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23297#p23297"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23297#p23297"><![CDATA[
1. Can you run RoboBASIC on Windows 7 and download programs to your robot from Robobasic on Win7? <br /><br /><br />Yes, I have a post on how easy it was to do called Robobasic and Windows 7.<br /><br />2. If the bridge program is not installed on the robot already, is the vrbot GUI capable of downloading it itself on Win7? <br /><br /><br />No, the vrbot GUI will not connect to the robot.<br /><br /><br /><br /><br />3. Once the Robonova bridge program is installed on the Robot can the GUI operate correctly on Win 7? <br /><br /><br />Yes, the vrbot GUI will connect to the robot if the bridge program is already install on the robot.<br /><br /><br /><br />4. If you are using a USB to RS232 converter, what is your brand/model? <br /><br />ATEN USB to serial bridge.  Model :GUC232A<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Sun Nov 29, 2009 3:53 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-26T18:15:41+01:00</updated>
<published>2009-11-26T18:15:41+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23044#p23044</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23044#p23044"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23044#p23044"><![CDATA[
Hi guys<br /><br />Just a quick stop to let you now the Full Source code for Arduino USB boards is now available here <!-- m --><a class="postlink" href="http://robosavvy.com/RoboSavvyPages/VRbot/VRbot-Arduino_2009_DEMO_1.0.zip">http://robosavvy.com/RoboSavvyPages/VRb ... MO_1.0.zip</a><!-- m --><br /><br />To run the sample code for Arduino USB Boards you need to be running VRBot GUI v 1.1.3 or above.<br />V1.1.3 can be found here <!-- m --><a class="postlink" href="http://robosavvy.com/RoboSavvyPages/VRbot/VRbotGUI-1.1.3.zip">http://robosavvy.com/RoboSavvyPages/VRb ... -1.1.3.zip</a><!-- m --> . <br />I recommend that you visit the <a href="http://robosavvy.com/store/product_info.php/products_id/571" class="postlink">VRbot product</a> page for up to date files/versions.<br /><br />The previous source code for Arduino had been developed for the POPBot and is still available.<br /><br />Therefore in addition to supporting Robonova, VRBot now supports, out of the box, the following platforms:<br /><br />- POPBot Robots<br />- Arduino USB boards<br /><br />The revised product page (including new and updated documentation is available here <!-- m --><a class="postlink" href="http://robosavvy.com/store/product_info.php/products_id/571">http://robosavvy.com/store/product_info ... cts_id/571</a><!-- m -->)<br /><br />In addition, any other platform with a TTL UART or capable of doing BitBanging can use VRbot. You just need to follow the VRBot protocol.<br /><br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Thu Nov 26, 2009 6:15 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-27T12:58:29+01:00</updated>
<published>2009-11-26T12:05:44+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23022#p23022</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23022#p23022"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23022#p23022"><![CDATA[
Hi Gort<br /><br />I finally understood the combination of factors that can make VRBot GUI + Windows 7 fail <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /><br /><br />It needs a combination of factors to occur:<br />- You are using VRBot + Robonova (it doesn't affect other platforms)<br />- AND You are using Windows 7<br />- AND The bridge program is not already installed on the Robot<br />- AND You are using a USB to RS232 converters from ATEN (it is based on prolific; other brands don't seem to have any issue).<br /><br />The GUI will work on Windows 7 as long as the bridge program is already installed on the Robot.<br />If the bridge program is not installed yet, the GUI may have some trouble downloading the bridge program to the Robot, when using Windows 7 (on other Windows Versions, the GUI WILL download the bridge program correctly).<br /><br />This seems to happen with USB to Serial adapters from ATEN AND Windows 7 but it only affects the download of the bridge program. <br />It does not affect the programming of the module once the Robonova bridge program is already in place.<br />If you use any other platform or a USB to TTL serial adapter the GUI will also run fine on Win7. This issue is, at this point, specific to Robonova.<br /><br />The reason why I asked about Robobasic and Windows 7 is because usually when the VRbot GUI can't download the program to the Robot, RoboBASIC itself will also not be able to do it on Win7. <br /><br /><br />Therefore it would be very helpful if you could give the following information:<br />1) Can you run RoboBASIC on Windows 7 and download programs to your robot from Robobasic on Win7?<br /><br />2) If the bridge program is not installed on the robot already, is the vrbot GUI capable of downloading it itself on Win7?<br /><br />3) Once the Robonova bridge program is installed on the Robot can the GUI operate correctly on Win 7?<br /><br />4) If you are using a USB to RS232 converter, what is your brand/model?<br /><br /><br />Thank you very much.<br />Pedro<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Thu Nov 26, 2009 12:05 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-25T17:52:01+01:00</updated>
<published>2009-11-25T17:52:01+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23009#p23009</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23009#p23009"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23009#p23009"><![CDATA[
Hi Gort<br /><br />Thank you for your information. We'd be very grateful if we could hear about your experience.<br />There were some issues with using USB2Serial adapters with VRbot GUI but I believe those were mitigated now.<br />This new version has been tested on XP, Vista (32 and 64bit) and Win 7 32 bit. You would be Win7 64bit and therefore your input would be greatly appreciated.<br /><br />I have also heard rumours of RoboBASIC not working on Windows 7. What is your experience on this?<br /><br /><br />Finally, for all those with Arduino USB boards, I am pleased to say the full Sample code for these boards (based on ATMEGA 168 and ATMEGA328) is nearly ready.<br /><br /><br />From the time I've taken with VRbot I came to realise you don't even need ot use the GUI to program the SD commands.<br />All operations are self contained (including the traning of voices) on the module so as long as you implement the protocol you can manipulate the module (including do training) from any host that can work at 9 600 baud or at least implement bit banging. The way the module is designed lets you use it with Bit Banging, even without a buffer and without any packet loss.<br />Quite clever.<br /><br />Regards<br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Wed Nov 25, 2009 5:52 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2009-11-25T14:37:39+01:00</updated>
<published>2009-11-25T14:37:39+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23006#p23006</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23006#p23006"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=23006#p23006"><![CDATA[
I have tried out version 1.1.2 and it works with my 64 bit Win 7 laptop. I will post more as I get time to play with it more.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Wed Nov 25, 2009 2:37 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-24T13:48:43+01:00</updated>
<published>2009-11-24T13:48:43+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22987#p22987</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22987#p22987"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22987#p22987"><![CDATA[
Hi Guys<br /><br />I wanted to post a <span style="color: green">general troubleshooting guide for VRbot</span>.<br /><br /><span style="color: green">STEP 1:</span><br />If you can't access the board via the GUI, please ensure all connections are correct and in particular:<br />- RX of VRbot connects to TX on the host device<br />- TX on VRbot connects to RX on the host device<br />(here Host device is the Arduino/Robonova/Atmega, etc).<br /><br />Additionally make sure you are applying 5V to the board and that you have Vcc and GND correctly connected.<br /><br /><span style="color: green">STEP 2:</span><br />Once you do you that, and if the VRbot GUI does not connect, <span style="color: green">you can quickly troubleshoot if the board is working by connecting to it via Hyperterminal or a similar program</span>. The procedure is described bellow.<br />This procedure is specially useful for people using Arduino and other platforms as the sample code sometimes does not work out of the box (because the current sample code it was not written for Arduino USB boards).<br /><br /><span style="color: green">-</span> Download the freeware TeraTerm here <!-- m --><a class="postlink" href="http://en.sourceforge.jp/projects/ttssh2/releases/">http://en.sourceforge.jp/projects/ttssh2/releases/</a><!-- m --><br />You can use any other Terminal software; for the purpose of this tuturial we'll be using Teraterm.<br /><br /><span style="color: green">-</span> If you have a USB to TTL UART serial adapter (one that works at 5V), connect VRbot to the USB to TTL UART serial board (connect all pins of VRbot to the USB to TTL board, including Vcc and Gnd; remember RX goes to TX and TX goes to RX).<br /><span style="color: green">-</span> If you don't have a board such as the above, (1) connect VRbot to your platform (Robonova, Arduino, etc) and (2) download the bridge program to the platform. <span style="text-decoration: underline">Once you download the bridge program, (3) start the program</span>.<br /><br /><span style="color: green">-</span> On the PC open TeraTerm and connect to the COMM port where the USB2TTL is connected (or the COMM port of your platform with where the bridge program is running if you chose this solution).<br /><span style="font-style: italic">Connection details: 9600bps, No parity, 1 Stop bit, no flow control.</span><br /><br /><span style="color: green">-</span> Now test the communication:<br />Press lowercase x on your keyboard and then press SPACE.<br />You should receive a reply.<br />Repeat the procedure several times.<br />If VRbot replies, it means it is working properly.<br />Remember to <span style="text-decoration: underline">always press SPACE after pressing x</span> or otherwise, VRbot won't send the response.<br />It is normal that you don't see the characters you type. If you want to see the characters you type, enable an option called &quot;Local Echo&quot;.<br /><br />If you determine the module is working, then it is most likely a software issue.<br />In any case you can post here or contact us and we'll guide through fixing the issue.<br /><br />Regards<br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Tue Nov 24, 2009 1:48 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-24T12:41:50+01:00</updated>
<published>2009-11-24T12:41:50+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22983#p22983</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22983#p22983"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22983#p22983"><![CDATA[
Hi Gort<br /><br />Thank you very much for the information. That is very helpful.<br /><br />I advised the manufacturer about your post and they sent the following recommendations:<br /><br />1) Are you using the latest version of the GUI? The latest version is 1.1.2 and can be found here <!-- m --><a class="postlink" href="http://tigal.com/files/download/veear/VRbotGUI-1.1.2.zip">http://tigal.com/files/download/veear/V ... -1.1.2.zip</a><!-- m --><br />I will be updating the link in the product page as well.<br /><br />2) From looking the video they took the opportunity to explain in a bit more detail some tips and tricks to improve speech recognition performance:<br />a) <br />speak naturally as speaking too loud may reduce the recognition performance. If the room is not noisy,they recommend that users speak as with another person, without &quot;shouting&quot;.<br /><br />b) <br />allow the system to switch from one wordset to another by making a pause before saying the next command: for instance &quot;Robot&quot; pause &quot;Run&quot; pause &quot;Forward&quot;... as again it should enable maximum recognition performance on the module.<br /><br /><br />It would be excellent if you could let us know the results of using the latest version with your Win 7 64bit.<br /><br />Thank you very much for all the detailed info (and the video!).<br /><br />Regards<br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Tue Nov 24, 2009 12:41 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2009-11-23T21:07:01+01:00</updated>
<published>2009-11-23T21:07:01+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22974#p22974</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22974#p22974"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22974#p22974"><![CDATA[
I think that the one time I was able to connect with my Win 7 laptop was a fluke. <br /> <br />The error that I got was when I clicked on the connection button ( in the upper left hand corner of the screen ), it process the request for about 10 to 30 seconds and then the error message in the above post appears. The GUI seems like it sees the correct com port because the correct port number is the only one on the drop down menu or the first one on the list. <br /><br />I have the 64 bit version of Win 7 and the 32 bit version of Vista. I am wondering if this could be the main issue? <br /><br />I also have a serial to USB adaptor.<br /><br /><div class='bbmedia' data-url='http://www.youtube.com/watch?v=czLYuqtHUBs&amp;hl=en_US&amp;fs=1&amp;' style='margin: 1px; display: inline-block; vertical-align: bottom;'><div style='width: 200px; height: 40px; border: 1px solid #999; display: table-cell; text-align: center; vertical-align: middle; font: 10px/10px Verdana; color: #555; opacity: 0.5;'><a style='color: #105289; text-decoration: none;' href='http://phpbbex.com/' target='_blank'>phpBB</a> &#91;media&#93;</div><script>if (typeof bbmedia == 'undefined') { bbmedia = true; var e = document.createElement('script'); e.async = true; e.src = 'js/bbmedia.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s); }</script></div><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Mon Nov 23, 2009 9:07 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-11-23T12:22:35+01:00</updated>
<published>2009-11-23T12:22:35+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22962#p22962</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22962#p22962"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22962#p22962"><![CDATA[
Hi Gort<br /><br />Could you please detail your experience?<br /><br />When you mean &quot;I am back to not connecting&quot; what do you mean? You were able to connect but now you are unable to connect again?<br /><br />We have seen some occasions where two different things may happen:<br />- The GUI software is unable to open the windows COM port for some reason. There is no problem with the board; it would be a software error and it is sometimes related to the OS version.<br /><br />- The board does not respond to a connect.<br /><br />So far it has been hard for us to separate between the two when customers ask for tech support.<br />We have advised the manufacturer about this and they are tracking the issue. They are also very interested to hear from customers about their experience so if you could detail yours, it would be great. <br />One question I can think of right now is this: are you running 32 bit or 64bit version of win7? when you say it works in vista, is it 32 or 64bit vista?<br /><br />So far we've always been able to speak with customers and come to a solution either by working out the issue or replacing the board in the few occasions we've encountered this.<br /><br />If you need any further assistance you can email me at pedro at robosavvy dot com .<br /><br />Regards<br />Pedro.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Mon Nov 23, 2009 12:22 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2009-11-22T22:57:21+01:00</updated>
<published>2009-11-22T22:57:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22957#p22957</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22957#p22957"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22957#p22957"><![CDATA[
It looks like the gui does not work with Windows 7. I was able to connect and use the gui with Vista.<br /><br /><div class='bbmedia' data-url='http://www.youtube.com/watch?v=xLt6dVINgVs&amp;hl=en_US&amp;fs=1&amp;' style='margin: 1px; display: inline-block; vertical-align: bottom;'><div style='width: 200px; height: 40px; border: 1px solid #999; display: table-cell; text-align: center; vertical-align: middle; font: 10px/10px Verdana; color: #555; opacity: 0.5;'><a style='color: #105289; text-decoration: none;' href='http://phpbbex.com/' target='_blank'>phpBB</a> &#91;media&#93;</div><script>if (typeof bbmedia == 'undefined') { bbmedia = true; var e = document.createElement('script'); e.async = true; e.src = 'js/bbmedia.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s); }</script></div><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Sun Nov 22, 2009 10:57 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Gort]]></name></author>
<updated>2009-11-22T05:35:37+01:00</updated>
<published>2009-11-22T05:35:37+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22942#p22942</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22942#p22942"/>
<title type="html"><![CDATA[VRbot - Voice Recognition Module for RN-1 now in stock]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=4154&amp;p=22942#p22942"><![CDATA[
I am now back  to not connecting. I am at a lose as to what to do.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=174">Gort</a> — Sun Nov 22, 2009 5:35 am</p><hr />
]]></content>
</entry>
</feed>