<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0">
<channel>
    <title>RoboRealm Forum</title>
    <link>http://www.RoboRealm.com/</link>
    <description>The newest forum threads.</description>
    <lastBuildDate>Tue, 30 Nov 1999 00:11:00 EST</lastBuildDate>
    <language>en-us</language>
    <copyright>Copyright: (C) RoboRealm, http://www.RoboRealm.com/</copyright>
    <docs>http://www.RoboRealm.com/</docs>

    <item>
        <title>No Title</title>
        <description>
        The correct link is:&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.usconverters.com/index.php?main_page=index&amp;cPath=70&quot; target=&quot;_blank&quot;&gt;http://www.usconverters.com/&lt;wbr&gt;index.php?main_&lt;wbr&gt;page=index&amp;cPath=70&lt;/a&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        I had luck with a &amp;lt;a href=&quot;http://www.usconverters.com/index.php?main_page=index&amp;cPath=70&quot;&amp;gt;wireless serial adapter&amp;lt;/a&amp;gt; from U. S. Converters.com        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        S,&lt;br&gt;&lt;br&gt;You should have a look at the discussions in this forum surrounding the BS2 on the BoeBot. That is a RS232 interface with a cheap rf transmitter and a Basic Stamp on the other end. That may help you to understand the finer points of serial comm.&lt;br&gt;&lt;br&gt;For example have a read at&lt;br&gt;&lt;a href=&quot;http://www.roborealm.com/forum/index.php?forum_id=721&quot; target=&quot;_blank&quot;&gt;http://www.roborealm.com/&lt;wbr&gt;forum/&lt;wbr&gt;index.php?forum_&lt;wbr&gt;id=721&lt;/a&gt;&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        I&apos;m sorry for the lack of informations, and I am aware of how difficult it is to talk about every distinctive piece of hardware. I was thinking that an example with the control of, let&apos;s say 8 robot functions with the RS232 interface, a RF cheap transmitter, a RF receiver and a PIC 16f876 would be of great help to many (especially me) who may still have questions about serial transmision in Roborealm and many other problems.&lt;br&gt;&lt;br&gt;I know that I&apos;m asking too much, but I haven&apos;t been able to found something usefull yet.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        That&apos;s very dependent on the hardware that you are using. Most microcontrollers either already have a protocol that you have to follow or have the ability to custom create your own. Getting down into the nitty gritty of rf electronics is beyond our ability. We would just assume that it looks like a serial port (from a PC point of view) and then use the protocol of the device on the other end to talk to it assuming the rf transmission is just a passthrough (not always the case).&lt;br&gt;&lt;br&gt;You might want to target something more specific.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Very valuable information, STeven! And thanks for a great software!&lt;br&gt;But is there a tutorial or a bigger example with what to do with rf modules? how do you &quot;encode&quot; a robot&apos;s directions into a sequence of bits and then add the sincronisation, address and checksums? I&apos;m a beginner, I see great potential&amp;nbsp;&amp;nbsp;in this soft, but I don&apos;t know how to &quot;harvest&quot; it.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Perhaps the following will help you get along ...&lt;br&gt;&lt;br&gt;Try&lt;br&gt;&lt;br&gt;\\x54\\x2\\x56&lt;br&gt;&lt;br&gt;which would transmit the 3 bytes &lt;br&gt;&lt;br&gt;85 2 87 &lt;br&gt;&lt;br&gt;Is this works you can then create a more generic interface that would transmit any data bit and calculate the checksum. You could do this in the VBScript module using something like&lt;br&gt;&lt;br&gt;data = GetVariable(&quot;my_data&quot;) &apos; the bits to set&lt;br&gt;SetVariable &quot;checksum&quot;, data+2&lt;br&gt;&lt;br&gt;and then use&lt;br&gt;&lt;br&gt;\\x54\\[my_data]\\[checksum]&lt;br&gt;&lt;br&gt;to transmit that sequence. Note that \\ means a single byte should be sent as apposed to 4.&lt;br&gt;&lt;br&gt;Good luck!&lt;br&gt;&lt;br&gt;STeven.&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>wireless transmission over serial</title>
        <description>
        I am using an RF transmitter that I bought locally. It has 8-bits of TTL outputs from a microcontroller. Can someone give me an example of what to type in the send sequence area? The format would be [Header] + [Data] + [Checksum], a 3-byte data. The header is supposedly 54h by default. How would I turn on, say bit 2(that would be the data). The checksum is simply the sum of header and data. I would be glad if someone could help me figure this out, thanks!        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2958</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2958</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
</channel>
</rss>
