<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Annin Robotics Forum - Recent Posts				            </title>
            <link>https://anninrobotics.com/forum/</link>
            <description>Annin Robotics Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 14 Sep 2026 15:00:51 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Software version 6.1 released</title>
                        <link>https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3225</link>
                        <pubDate>Thu, 18 Sep 2025 13:44:02 +0000</pubDate>
                        <description><![CDATA[@justin-iszatt I will likely do both, having a git-hub repo and direct download links.  Thanks for your feedback.]]></description>
                        <content:encoded><![CDATA[@justin-iszatt I will likely do both, having a git-hub repo and direct download links.  Thanks for your feedback.]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Chris Annin</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3225</guid>
                    </item>
				                    <item>
                        <title>RE: Software version 6.1 released</title>
                        <link>https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3224</link>
                        <pubDate>Thu, 18 Sep 2025 13:30:43 +0000</pubDate>
                        <description><![CDATA[Hi @Chris-Annin and first if all thank you for getting back to me.
Thanks for the clarification on the pyd-file and your plans sound very promising! Is the plan to go for git-hub or will yo...]]></description>
                        <content:encoded><![CDATA[<p>Hi @Chris-Annin and first if all thank you for getting back to me.</p>
<p>Thanks for the clarification on the pyd-file and your plans sound very promising! Is the plan to go for git-hub or will you stay with the current way of releases?</p>
<p>In case you need input regarding the changes i did for v5.0 or help in any other way, I would love to give feedback, test a possible beta or help in any other way.</p>
<p>Thanks again for your work and looking forward to your next steps.</p>
<p>Best regards</p>
<p>&nbsp;</p>
<p>Justin</p>]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Justin Iszatt</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3224</guid>
                    </item>
				                    <item>
                        <title>RE: Software version 6.1 released</title>
                        <link>https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3223</link>
                        <pubDate>Wed, 17 Sep 2025 18:59:06 +0000</pubDate>
                        <description><![CDATA[@justin-iszatt Hello,  I&#039;m actually working with a colleague on that very thing - creating a repo and linux compatible code.  I&#039;ll post a video and newsletter as soon as I can make that happ...]]></description>
                        <content:encoded><![CDATA[@justin-iszatt <span>Hello,  I'm actually working with a colleague on that very thing - creating a repo and linux compatible code.  I'll post a video and newsletter as soon as I can make that happen.  Trying to work as fast as possible,  could be a number of weeks but I am working on it.</span>]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Chris Annin</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3223</guid>
                    </item>
				                    <item>
                        <title>RE: Software version 6.1 released</title>
                        <link>https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3222</link>
                        <pubDate>Wed, 17 Sep 2025 18:58:32 +0000</pubDate>
                        <description><![CDATA[@justin-iszatt
A .pyd file is basically a Windows dynamic library (.dll) that Python can import directly as a module.


It’s created when you write Python extensions in C or C++ (often u...]]></description>
                        <content:encoded><![CDATA[@justin-iszatt
<p>A <code>.pyd</code> file is basically a Windows dynamic library (<code>.dll</code>) that Python can import directly as a module.</p>
<ul>
<li>
<p>It’s created when you write Python extensions in C or C++ (often using tools like pybind11 or Cython).</p>
</li>
<li>
<p>From Python’s perspective, it looks and behaves just like a normal<span> </span><code>.py</code><span> </span>file — you can<span> </span><code>import robot_kinematics </code>and use its functions/classes — but under the hood it’s compiled native code.</p>
</li>
<li>
<p>On Linux/macOS, the equivalent is a<span> </span><code>.so</code><span> </span>(shared object) file.</p>
</li>
</ul>
<p>This pyd file is essentially the exact same C++ kinematics code thats running on the teensy - it just allows me to control the virtual robot exactly the same as the real robot.</p>]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Chris Annin</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3222</guid>
                    </item>
				                    <item>
                        <title>RE: Software version 6.1 released</title>
                        <link>https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3221</link>
                        <pubDate>Wed, 17 Sep 2025 17:45:07 +0000</pubDate>
                        <description><![CDATA[Could you maybe elaborate the &quot;robot_kinematics.pyd&quot; is this custom made by you or &quot;related&quot; to roboKimenatics by Silias U?As a .pyd file is similar to a .dll file, I can&#039;t simply use it on ...]]></description>
                        <content:encoded><![CDATA[<p>Could you maybe elaborate the "robot_kinematics.pyd" is this custom made by you or "related" to roboKimenatics by <a href="https://github.com/Silas-U/RoboKinematics" target="_blank" rel="noopener">Silias U</a>?<br />As a .pyd file is similar to a .dll file, I can't simply use it on Unix </p>
<p>&nbsp;</p>
<div id="accel-snackbar" style="left: 50%;top: 50px"> </div>]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Justin Iszatt</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3221</guid>
                    </item>
				                    <item>
                        <title>RE: Software version 6.1 released</title>
                        <link>https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3220</link>
                        <pubDate>Wed, 17 Sep 2025 17:05:28 +0000</pubDate>
                        <description><![CDATA[Hi Chris,any chance we could convince you to work on a git-repo?Background is, that I love to see new features and add-ons made to the cool software you offer for free, but as I usually have...]]></description>
                        <content:encoded><![CDATA[<p>Hi Chris,<br />any chance we could convince you to work on a git-repo?<br />Background is, that I love to see new features and add-ons made to the cool software you offer for free, but as I usually have some troubles with new releases as I am running on Mac/Linux and MS Windows in parallel.<br />I usually take you release, disect it to a certain degree and make a set of small changes to the way you run some of the stuff (e.g. com-port do not really exist in the Unix world).<br /><br />As I am quite sure it does not change to much of the code your are dealing with and as others might also appreciate some of the changes I make, I would love to share the changes with you and make integrate them to the your official files.<br /><br />If you like, I can run you through the GitHub-setup or even setup one myself. What are your thoughts on this and is there anyone in the community actually interested in such an endeavour?<br /><br />Really looking forward to a reply and lots of thanks for the time, patience and know-how you put into this project!!<br /><br />LG<br /><br />J<br /><br /></p>
<div id="accel-snackbar" style="left: 50%;top: 50px"> </div>]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Justin Iszatt</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/software-version-6-1-released/#post-3220</guid>
                    </item>
				                    <item>
                        <title>RE: Question about J1 tapered roller bearings</title>
                        <link>https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3219</link>
                        <pubDate>Thu, 11 Sep 2025 23:41:34 +0000</pubDate>
                        <description><![CDATA[@danielgigliotti99-dggmail-com I would use PETG but it should work fine - its not that much pressure to preload.]]></description>
                        <content:encoded><![CDATA[@danielgigliotti99-dggmail-com I would use PETG but it should work fine - its not that much pressure to preload.]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Chris Annin</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3219</guid>
                    </item>
				                    <item>
                        <title>RE: Question about J1 tapered roller bearings</title>
                        <link>https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3218</link>
                        <pubDate>Thu, 11 Sep 2025 21:14:40 +0000</pubDate>
                        <description><![CDATA[@chris-annin Ok got it, thanks. This is very nice. Just out of curiosity, if I were to do something like this with a different material, for example PLA + heat set inserts, it wouldn&#039;t work ...]]></description>
                        <content:encoded><![CDATA[@chris-annin Ok got it, thanks. This is very nice. Just out of curiosity, if I were to do something like this with a different material, for example PLA + heat set inserts, it wouldn't work because the tension of the screws will deform the plastic rather than preload the bearing, right?]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Daniel Gigliotti</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3218</guid>
                    </item>
				                    <item>
                        <title>RE: Question about J1 tapered roller bearings</title>
                        <link>https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3217</link>
                        <pubDate>Thu, 11 Sep 2025 20:58:22 +0000</pubDate>
                        <description><![CDATA[@danielgigliotti99-dggmail-com no the screws place direct pressure on the bearing center housing and preload the bearings.  Im attaching a section view.
&nbsp;preload.jpg]]></description>
                        <content:encoded><![CDATA[@danielgigliotti99-dggmail-com no the screws place direct pressure on the bearing center housing and preload the bearings.  Im attaching a section view.
<div id="wpfa-4626" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//anninrobotics.com/wp-content/uploads/wpforo/default_attachments/1757624302-preload.jpg" target="_blank" title="preload.jpg"><i class="fas fa-paperclip"></i>&nbsp;preload.jpg</a></div>]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Chris Annin</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3217</guid>
                    </item>
				                    <item>
                        <title>RE: Question about J1 tapered roller bearings</title>
                        <link>https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3216</link>
                        <pubDate>Thu, 11 Sep 2025 19:42:45 +0000</pubDate>
                        <description><![CDATA[@chris-annin So there is a small gap between the two components and tightening the screws brings them closer?]]></description>
                        <content:encoded><![CDATA[@chris-annin So there is a small gap between the two components and <span>tightening </span>the screws brings them closer?]]></content:encoded>
						                            <category domain="https://anninrobotics.com/forum/"></category>                        <dc:creator>Daniel Gigliotti</dc:creator>
                        <guid isPermaLink="true">https://anninrobotics.com/forum/general-discussion/question-about-j1-tapered-roller-bearings/#post-3216</guid>
                    </item>
							        </channel>
        </rss>
		