<?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>
									Hardware - 				            </title>
            <link>https://fabscan.org/community/faq-hardware/</link>
            <description>FabScan Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 22 Jul 2026 23:24:07 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>How to configure the correct steps for my stepper motor?</title>
                        <link>https://fabscan.org/community/faq-hardware/configuration-for-400-step-motor/</link>
                        <pubDate>Tue, 31 Dec 2019 05:53:45 +0000</pubDate>
                        <description><![CDATA[My kit came with a 400 step motor, does this require any changes to the set up files?]]></description>
                        <content:encoded><![CDATA[<p>My kit came with a 400 step motor, does this require any changes to the set up files?</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mcinerney</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/configuration-for-400-step-motor/</guid>
                    </item>
				                    <item>
                        <title>My log says that &quot;No FabScanPi HAT or compatible device is found&quot;. What can i do?</title>
                        <link>https://fabscan.org/community/faq-hardware/no-fabscanpi-hat-or-compatible-device-found/</link>
                        <pubDate>Sat, 16 Nov 2019 18:35:31 +0000</pubDate>
                        <description><![CDATA[If you are have the Message &quot;No FabScanPi HAT or compatible device found&quot; in your log file you need to check the following options.

First double check the solder joints of the 40-pin Head...]]></description>
                        <content:encoded><![CDATA[<p><span style="font-size: 14pt"><strong>If you are have the Message "No FabScanPi HAT or compatible device found" in your log file you need to check the following options.</strong></span></p>
<ol>
<li><span style="font-size: 14pt">First double check the solder joints of the 40-pin Header of the FabScanPi-HAT. If you are sure that there are no 'cold' solder joints move on reading, otherwise resolder those joints. Try again and have a look to the logs. If the error still occurs continue reading with 3.</span></li>
<li><span style="font-size: 14pt">Check if your fabscanpi-server version is 0.8.0 or higher. Have a look into your default.config.json and check the serial baudrate. It should be 57600 for fabscanpi-server &gt;= 0.4.2. If you changed the baudrate and the error still occurs continue with reading 3.</span></li>
<li><span style="font-size: 14pt">Your bootloader is bricked, what means that you need to flash a new bootloader to your FabScanPi HAT. Continue with reading "How to flash the FabScanPi HAT Bootloader?"</span></li>
</ol>
<p><strong>How to flash the Bootloader?</strong></p>
<p><em><strong><span style="color: #ff0000">! If you want to leave the HAT connected to the pi during the flashing process. Be sure you stopped the FabScanPi Server. You can use the following command to do that. !</span></strong></em></p>
<pre>$ sudo /etc/init.d/fabscanpi-server stop </pre>
<p><span style="text-decoration: underline"><em><strong>Option A: Using Raspberry Pi for flashing.</strong></em></span></p>
<p>Connect the FabScanPi HAT pins as described below. (solder some wires to the solder pads). Use a resistor 2k2...5k6 in series for every signal. (see picture for details)</p>
<pre>RPi  -&gt; Target
IO25 -&gt; Reset
IO11 -&gt; SCK
IO10 -&gt; MOSI
IO9  -&gt; MISO
GND  -&gt; GND</pre>
68
<p>Download bootloader:</p>
<pre>$ wget https://github.com/watterott/RPi-UNO-HAT/raw/master/docs/bloader.hex </pre>
<p>Edit the file<em> avrdude.conf</em>  and add the following lines:</p>
<pre>$ sudo nano /usr/local/etc/avrdude.conf 
programmer id = "pi_isp"; <br /> desc = "GPIO bitbang"; <br /> type = "linuxgpio";   <br /> reset = 25; sck = 11;<br /> mosi = 10; <br /> miso = 9;<br />;</pre>
<p>Flash bootloader:</p>
<pre>$ avrdude -c pi_isp -p m328p -e -U flash:w:bloader.hex:i -U lfuse:w:0xFF:m -U hfuse:w:0xD6:m -U efuse:w:0x05:m -U lock:w:0x0F:m</pre>
<p><strong><span style="text-decoration: underline">Option B: Using Arduino Uno (device ttyACM0 or ttyUSB0 ) for flashing.</span></strong></p>
<p>Connection (Arduino Uno connected to RPi via USB):</p>
<pre>Uno -&gt; Target <br />D10 -&gt; Reset <br />D13 -&gt; SCK <br />D11 -&gt; MOSI <br />D12 -&gt; MISO <br />GND -&gt; GND</pre>
69
<p>Download bootloader and ISP firmware:</p>
<pre>$ wget <a href="https://raw.githubusercontent.com/watterott/RPi-UNO-HAT/master/software/bloader.hex">https://raw.githubusercontent.com/watterott/RPi-UNO-HAT/master/software/bloader.hex</a>
$ wget <a href="https://raw.githubusercontent.com/watterott/RPi-UNO-HAT/master/software/isp.hex">https://raw.githubusercontent.com/watterott/RPi-UNO-HAT/master/software/isp.hex</a> </pre>
<p>Flash ISP firmware to Arduino Uno:</p>
<pre> $ avrdude -c arduino -P /dev/ttyUSB0 -b 115200 -p m328p -e -U flash:w:isp.hex:i </pre>
<p>or</p>
<pre> $ avrdude -c arduino -P /dev/ttyACM0 -b 115200 -p m328p -e -U flash:w:isp.hex:i </pre>
<p>Flash bootloader:</p>
<pre>$ avrdude -c stk500v1 -P /dev/ttyUSB0 -b 19200 -p m328p -e -U flash:w:bloader.hex:i -U lfuse:w:0xFF:m -U hfuse:w:0xD6:m -U efuse:w:0x05:m -U lock:w:0x0F:m</pre>
<p>or</p>
<pre>$ avrdude -c stk500v1 -P /dev/ttyACM0 -b 19200 -p m328p -e -U flash:w:bloader.hex:i -U lfuse:w:0xFF:m -U hfuse:w:0xD6:m -U efuse:w:0x05:m -U lock:w:0x0F:m</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/no-fabscanpi-hat-or-compatible-device-found/</guid>
                    </item>
				                    <item>
                        <title>Does the Software support Laser movement by stepper/servo?</title>
                        <link>https://fabscan.org/community/faq-hardware/my-servo-stepper-servo-isnt-working/</link>
                        <pubDate>Thu, 12 Sep 2019 06:29:56 +0000</pubDate>
                        <description><![CDATA[Does the FabScan software provide a feature to use laser movement with a servo or stepper motor, cause the case provides some options to mount a servo or stepper.]]></description>
                        <content:encoded><![CDATA[<p>Does the FabScan software provide a feature to use laser movement with a servo or stepper motor, cause the case provides some options to mount a servo or stepper. </p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/my-servo-stepper-servo-isnt-working/</guid>
                    </item>
				                    <item>
                        <title>Which LED-ring is compatible?</title>
                        <link>https://fabscan.org/community/faq-hardware/which-led-ring-is-compatible/</link>
                        <pubDate>Thu, 12 Sep 2019 06:29:20 +0000</pubDate>
                        <description><![CDATA[Which type of LED Ring is supported by the FabScan Software yet?]]></description>
                        <content:encoded><![CDATA[<p>Which type of LED Ring is supported by the FabScan Software yet?</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/which-led-ring-is-compatible/</guid>
                    </item>
				                    <item>
                        <title>Is the LED-Ring / PCB-board with LEDs mandatory?</title>
                        <link>https://fabscan.org/community/faq-hardware/is-the-led-ring-pcb-board-with-leds-mandatory/</link>
                        <pubDate>Thu, 12 Sep 2019 06:28:59 +0000</pubDate>
                        <description><![CDATA[Do i need the LED light for scanning or calibraion?]]></description>
                        <content:encoded><![CDATA[<p>Do i need the LED light for scanning or calibraion?</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/is-the-led-ring-pcb-board-with-leds-mandatory/</guid>
                    </item>
				                    <item>
                        <title>Does the Raspberry Pi NoIR camera module work?</title>
                        <link>https://fabscan.org/community/faq-hardware/i-have-a-raspberry-cam-module-with-noir-can-i-use-it/</link>
                        <pubDate>Thu, 12 Sep 2019 06:28:42 +0000</pubDate>
                        <description><![CDATA[I have a Raspberry Cam Module with NoIR. Can I use it with the FabScan software?]]></description>
                        <content:encoded><![CDATA[<p>I have a Raspberry Cam Module with NoIR. Can I use it with the FabScan software?</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/i-have-a-raspberry-cam-module-with-noir-can-i-use-it/</guid>
                    </item>
				                    <item>
                        <title>Which camera will work?</title>
                        <link>https://fabscan.org/community/faq-hardware/which-camera-will-work/</link>
                        <pubDate>Thu, 12 Sep 2019 06:28:26 +0000</pubDate>
                        <description><![CDATA[There are several cameras out for the Raspberry Pi. Which one does actually work with the FabScan?]]></description>
                        <content:encoded><![CDATA[<p>There are several cameras out for the Raspberry Pi. Which one does actually work with the FabScan?</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/which-camera-will-work/</guid>
                    </item>
				                    <item>
                        <title>What is the rotating direction of the scan table?</title>
                        <link>https://fabscan.org/community/faq-hardware/what-is-the-rotating-direction-of-the-scan-table/</link>
                        <pubDate>Thu, 12 Sep 2019 06:27:58 +0000</pubDate>
                        <description><![CDATA[It should move clockwise – if not please consult the hardware chapter of our documentation and check the connection of your stepper.]]></description>
                        <content:encoded><![CDATA[<p>It should move clockwise – if not please consult the hardware chapter of our documentation and check the connection of your stepper.</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/what-is-the-rotating-direction-of-the-scan-table/</guid>
                    </item>
				                    <item>
                        <title>What power source(s) do I need to get my FabScanPi working?</title>
                        <link>https://fabscan.org/community/faq-hardware/what-power-sources-do-i-need-to-get-my-fabscanpi-working/</link>
                        <pubDate>Thu, 12 Sep 2019 06:27:37 +0000</pubDate>
                        <description><![CDATA[Do i need a special power supply for the FabScan?]]></description>
                        <content:encoded><![CDATA[<p>Do i need a special power supply for the FabScan?</p>]]></content:encoded>
						                            <category domain="https://fabscan.org/community/faq-hardware/">Hardware</category>                        <dc:creator>mario</dc:creator>
                        <guid isPermaLink="true">https://fabscan.org/community/faq-hardware/what-power-sources-do-i-need-to-get-my-fabscanpi-working/</guid>
                    </item>
							        </channel>
        </rss>
		