<?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>
									Can&#039;t find Object I created - Arduino				            </title>
            <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/</link>
            <description>Discussion board for Robotics, Arduino, Raspberry Pi and other DIY electronics and modules. Join us today!</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 08 Jun 2026 20:12:28 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52462</link>
                        <pubDate>Wed, 15 Apr 2026 13:27:25 +0000</pubDate>
                        <description><![CDATA[@lom

::chuckle::
Called a &quot;programmer&#039;s itch&quot;
In any case, I&#039;m happy it worked for you.]]></description>
                        <content:encoded><![CDATA[<p>@lom</p>
<p></p>
<p>I couldn't wait till tomorrow</p>

<p>::chuckle::</p>
<p>Called a "programmer's itch"</p>
<p>In any case, I'm happy it worked for you.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>TFMcCarthy</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52462</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52461</link>
                        <pubDate>Wed, 15 Apr 2026 03:32:19 +0000</pubDate>
                        <description><![CDATA[@tfmccarthy
&nbsp;
I couldn&#039;t wait till tomorrow following your recommendations I did find an incorrect case issue. I corrected it and Timer appeared in the IDE library list.

&nbsp;
&amp;n...]]></description>
                        <content:encoded><![CDATA[<p><span>@tfmccarthy</span></p>
<p>&nbsp;</p>
<p>I couldn't wait till tomorrow following your recommendations I did find an incorrect case issue. I corrected it and Timer appeared in the IDE library list.</p>
10731
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Thanks!</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>Lom</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52461</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52460</link>
                        <pubDate>Wed, 15 Apr 2026 03:07:52 +0000</pubDate>
                        <description><![CDATA[@tfmccarthy

 thank you for going through that. I thought I followed the same tutorial you used but could not get it to work. I think you hit on what I might have done wrong (ie capitaliza...]]></description>
                        <content:encoded><![CDATA[<blockquote>
<p>@tfmccarthy</p>
</blockquote>
<p> thank you for going through that. I thought I followed the same tutorial you used but could not get it to work. I think you hit on what I might have done wrong (ie capitalization).</p>
<p> I’ll take a look tomorrow</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>Lom</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52460</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52459</link>
                        <pubDate>Wed, 15 Apr 2026 03:00:29 +0000</pubDate>
                        <description><![CDATA[@lom 
The purpose of this post is to demonstrate how to make an Arduino library from your source code modules that you can use in different sketches. The library is intended for &quot;personal&quot; ...]]></description>
                        <content:encoded><![CDATA[<p>@lom </p>
<p>The purpose of this post is to demonstrate how to make an Arduino library from your source code modules that you can use in different sketches. The library is intended for "personal" use, i.e., not for distribution but still integrated into the Arduino IDE for ease of use.</p>
<p>The Good News® is that creating a library from existing code is trivial. The most difficult part is the integration with the Arduino IDE and even that isn't very complex.</p>
<p>I'll use the example from the Arduino documentation <a href="https://docs.arduino.cc/learn/contributions/arduino-creating-library-guide/">Writing a Library for Arduino | Arduino Documentation</a>. That document discusses creating a module ready for code reuse.</p>
<p>The project SOS initially has two files, SOS.ino and Morse.h</p>
10721
<p><strong>Disclaimer: </strong>When I initially created the files, I didn't pay attention to the case of the file names, which I should have. So the images show files "morse.h", etc., when they should be "Morse.h". This is important for both the compiler and the IDE support. <em>Cave canem.</em></p>
<p>When you create the Morse class, you create the implementation file Morse.cpp</p>
10722
<p>At this point you're ready to place the file in the Arduino library folder, which is located in the Sketchbook folder. You can find the location of the Sketchbook in the Preferences dialog.</p>
10723
<p>Under the Sketchbook folder there should be a folder named libraries that contains all the third-party libraries you've installed using the IDE Library Manager.</p>
10724
<p>What's important to know is that you can create your own folder to hold your library code and the IDE will pick it up. Here I've manually added the Morse folder and copied the library files into it.</p>
10725
<p>If the Arduino IDE was open at that point the library won't show up under the "Include Library" submenu.</p>
10726
<p>You need to restart the IDE in order for it to refresh the list. When you do, the Morse library will appear, and you can add it to your sketch. When you do, the IDE will automatically insert the header file for the library (the file with the same name as the library folder) into your sketch</p>
<pre contenteditable="false"><strong>#include &lt;morse.h&gt;  // added by IDE
</strong>
#include &lt;Morse.h&gt;

//...
</pre>
<p>Case matters! As I mentioned, I used lowercase for the folder name and the file names, and the IDE followed my lead.</p>
<p>That's the bare minimum you need to use the library in your sketches.</p>
10727
<p>At this stage the library is for personal use and is disconnected from the IDE library manager. This means that the library is maintained manually. To connect it to the IDE library manager you must add a library.properties file to the folder under Sketchbook. Additional information about the file is found on <a href="https://arduino.github.io/arduino-cli/1.4/library-specification/">Library specification - Arduino CLI</a></p>
<p>After adding the library.properties and restarting the IDE the library manager should display the library.</p>
10728
<p>The file keywords.txt allows the IDE to format the code for the library properly.</p>
10729
<p><strong>Caution: </strong>once the Library manager controls the library you need to keep a permanent copy of the folder in case you decide to uninstall the library.</p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>TFMcCarthy</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52459</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52456</link>
                        <pubDate>Tue, 14 Apr 2026 00:26:16 +0000</pubDate>
                        <description><![CDATA[This is something that I&#039;ve put off for too long. Library building is a first class development task and should be covered.

suggestion: read the Forum Help Menu item

How to Add Code to...]]></description>
                        <content:encoded><![CDATA[<p></p>
<p>Don't spend too much time on it</p>
<p></p>
<p>This is something that I've put off for too long. Library building is a first class development task and should be covered.</p>
<p></p>
<p>Hope you can read the screen shots</p>
<p></p>
<p>suggestion: read the Forum Help Menu item</p>
<ul id="menu-help-menu" class="menu">
<li id="menu-item-177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-177"><a title="Add Code Samples to Your Post" href="https://forum.dronebotworkshop.com/add-code/">How to Add Code to Your Post</a></li>
</ul>
<p>I think I'll just use the morse code example.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>TFMcCarthy</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52456</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52449</link>
                        <pubDate>Mon, 13 Apr 2026 22:02:20 +0000</pubDate>
                        <description><![CDATA[@TFMcCarthy 
Don&#039;t spend too much time on it in the alternative I can copy and paste the timer code in where I need it. It was just for convenance and learning that I wanted to create a tim...]]></description>
                        <content:encoded><![CDATA[<p><a href="https://forum.dronebotworkshop.com/participant/tfmccarthy/">@TFMcCarthy </a></p>
<p>Don't spend too much time on it in the alternative I can copy and paste the timer code in where I need it. It was just for convenance and learning that I wanted to create a timer object.</p>
<p>&nbsp;</p>
<p>Hope you can read the screen shots</p>
<p>&nbsp;</p>
10706
<p>This is Timer.cpp</p>
<p>&nbsp;</p>
<p>This is Timer.H</p>
10707]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>Lom</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52449</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52448</link>
                        <pubDate>Mon, 13 Apr 2026 20:23:24 +0000</pubDate>
                        <description><![CDATA[@tfmccarthy 
Yes I could learn to how to create a library but know my limits when it comes to how much I know when it comes to writing professional grade code worth offering to others in a ...]]></description>
                        <content:encoded><![CDATA[<p>@tfmccarthy </p>
<p>Yes I could learn to how to create a library but know my limits when it comes to how much I know when it comes to writing professional grade code worth offering to others in a library which involves a clear understanding of the hardware, algorithms and mathematics involved. I personally have no reason to create a library. Learning C++ was lots of fun but there are lots of other fun things (and necessary real world things) I have to find time for too.</p>
<p>However if <a title="Lom" href="https://forum.dronebotworkshop.com/participant/lom/">@lom</a><span> has the time and desire to get up to speed on the how to of writing a library then I wish him well.</span></p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>robotBuilder</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/paged/2/#post-52448</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/#post-52446</link>
                        <pubDate>Mon, 13 Apr 2026 20:03:28 +0000</pubDate>
                        <description><![CDATA[@lom 
Working on it.
Can you provide the timer include file and source file? It will help.]]></description>
                        <content:encoded><![CDATA[<p>@lom </p>
<p>Working on it.</p>
<p>Can you provide the timer include file and source file? It will help.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>TFMcCarthy</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/#post-52446</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/#post-52445</link>
                        <pubDate>Mon, 13 Apr 2026 20:01:12 +0000</pubDate>
                        <description><![CDATA[Stop saying this, you! Just stop it right now!
You&#039;re much more advanced than you give yourself credit for. And you&#039;re much more capable as well.
You just have to change your perspective f...]]></description>
                        <content:encoded><![CDATA[
<p>That is too advanced for me!</p>

<p>Stop saying this, you! Just stop it right now!</p>
<p>You're much more advanced than you give yourself credit for. And you're much more capable as well.</p>
<p>You just have to change your perspective from, "It's really hard!" to "It's a lot of fun discovering this stuff!"</p>
<p>Not lecturing. just sayin', is all. :)</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>TFMcCarthy</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/#post-52445</guid>
                    </item>
				                    <item>
                        <title>RE: Can&#039;t find Object I created</title>
                        <link>https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/#post-52444</link>
                        <pubDate>Mon, 13 Apr 2026 20:00:46 +0000</pubDate>
                        <description><![CDATA[You were correct, it was just for my self I don’t know enough to code for primer people to use. But I did want to start to build up a modular library of objects I could call]]></description>
                        <content:encoded><![CDATA[<p>You were correct, it was just for my self I don’t know enough to code for primer people to use. But I did want to start to build up a modular library of objects I could call</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/arduino/">Arduino</category>                        <dc:creator>Lom</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/arduino/cant-find-object-i-created/#post-52444</guid>
                    </item>
							        </channel>
        </rss>
		