<?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>
									Raspberry Pi Questions - LiveSectional Forum				            </title>
            <link>https://www.livesectional.com/community/raspberry-pi-questions/</link>
            <description>LiveSectional Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 07 Jun 2026 19:41:49 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Authentication with WPA-Enterprise (username/password) is working!</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/authentication-with-wpa-enterprise-username-password-is-working/</link>
                        <pubDate>Tue, 05 May 2026 00:01:07 +0000</pubDate>
                        <description><![CDATA[I have WPA-Enterprise working, finally!  This is a pretty ugly setup, so it works and auto-starts, but it&#039;s not pretty.  Use at your own risk.
The basic process requires upgrading wpa_suppl...]]></description>
                        <content:encoded><![CDATA[<p>I have WPA-Enterprise working, finally!  This is a pretty ugly setup, so it works and auto-starts, but it's not pretty.  Use at your own risk.</p>
<p>The basic process requires upgrading wpa_supplicant to a later version, and then configuring it so that it grabs the configured username and password from the configuration file and correctly gets an address from DHCP.  Here's a brief setup.</p>
<p><strong>1. Update system libraries</strong>.  The version of Raspbian on the LiveSectional image is old enough that it's no longer actively maintained.  To get the old packages we need, it's necessary to switch to the legacy mirror for buster libraries.  In <em>/etc/apt/sources.list</em>, add the legacy mirror by adding this line to the bottom of the file.  (There's some small risk here because the repos added cryptographic auth in later versions, but I'm doing this in a hacky proof-of-concept way.)</p>
<pre contenteditable="false">deb http://legacy.raspbian.org/raspbian/ buster main contrib non-free rpi</pre>
<p>Once you've added the legacy repo, update the package list, and then install some supporting libraries:</p>
<pre contenteditable="false">$ sudo apt update
$ sudo apt install libnl-3-dev
$ sudo apt install libnl-genl-3-dev
$ sudo apt install libdbus-1-dev
$ sudo apt install libnl-route-3-dev</pre>
<p>These libraries are needed to build wpa_supplicant from source, and because they're dynamically linked, they need to be available at runtime.</p>
<p><strong>2.  Update wpa_supplicant</strong>.  The underlying version of Raspbian that LiveSectional is based on contains a development version of 2.8 from 2019 (plus some patches), which seems to have a bug in the key negotiation.  I updated this to version 2.11, found here: https://w1.fi/wpa_supplicant/</p>
<p>Basically, get the source code, run make, and wait a long time since the Pi Zero is slow.  Go get your coffee.  To install the new version, I copied the compiled versions over the distribution version:</p>
<pre contenteditable="false">$ cd /sbin
$ sudo cp wpa_supplicant wpa_supplicant-dist
$ sudo cp wpa_cli wpa_cli-dist
$ sudo cp ~/wpa_supplicant-2.11/wpa_supplicant/wpa_supplicant wpa_supplicant-2.11
$ sudo cp ~/wpa_supplicant-2.11/wpa_supplicant/wpa_cli-2.11j
$ sudo cp wpa_supplicant-2.11 wpa_supplicant
$ sudo cp wpa_cli-2.11 wpa_cli</pre>
<p>&nbsp;</p>
<p><strong>3. Configure wpa_supplicant</strong>.  To configure for your username and password, edit <em>/etc/wpa_supplicant/wpa_supplicant.conf</em> with your network information.  You should add certificates to validate your RADIUS server here, but that's another step I'm still working on.  If you don't add certificates, the Pi will accept any RADIUS server.</p>
<pre contenteditable="false">network={
        ssid="YOUR_SSID_NAME"
        key_mgmt=WPA-EAP
        pairwise=CCMP
        eap=PEAP
        identity="YOUR_USERNAME"
        password="YOUR_PASSWORD"
}
</pre>
<p><strong>4. Configure system networking</strong>.  In <em>/etc/network/interfaces</em>, tell the system that wlan0 is a hotplug interface created when the driver loads, and that you should configure it with DHCP, and point it at the supplicant configuration file:</p>
<pre contenteditable="false">allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
</pre>
<p>In <em><span class="s1">/etc/wpa_supplicant/functions.sh</span></em>, add a -c to the configuration file option in the command line so it's actually processed.  (There might be an elegant way to do this, but I am not sure what it is.)</p>
<p>Find the line that reads like this:</p>
<pre contenteditable="false">wpa_msg verbose "$WPA_SUP_BIN $WPA_SUP_OPTIONS $WPA_SUP_CONF"</pre>
<p>Then add a -c for the supplicant configuration file variable, WPA_SUP_CONF:</p>
<pre contenteditable="false">wpa_msg verbose "$WPA_SUP_BIN $WPA_SUP_OPTIONS -c $WPA_SUP_CONF"</pre>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>ZeroEngineLand</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/authentication-with-wpa-enterprise-username-password-is-working/</guid>
                    </item>
				                    <item>
                        <title>Cannot connect to wifi berrylan</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/cannot-connect-to-wifi-berrylan/</link>
                        <pubDate>Fri, 17 Apr 2026 04:58:31 +0000</pubDate>
                        <description><![CDATA[recently I was running into a problem where the web interface was not working so I tried troubleshooting. At first I removed the sd card and tried updating only to later find out I already h...]]></description>
                        <content:encoded><![CDATA[<p>recently I was running into a problem where the web interface was not working so I tried troubleshooting. At first I removed the sd card and tried updating only to later find out I already had the updated software but didn’t realize I was running 4.6 at the time. <br /><br /></p>
<p>after flashing the image I have been unable to get the pi to connect to the internet , I am unable to find it using berrylan.</p>
<p>&nbsp;</p>
<p>i have tried adding the wpa supplicant file as well as flashing and formatting the card multiple time to no avail. I also tried all the steps on a Mac and a PC and I bought a raspberry pi 4 to see if maybe my pi zero w was a bad board but I cannot seem to get the pi4 to be found using berrylan either with the flashed image. <br /><br /></p>
<p>I also tried using the raspberry pi image tool after I was not having success with balance etcher. <br /><br /></p>
<p>the power cord is good, I’m confused as to what the next step is to get this thing up and running again </p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>matthall1993</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/cannot-connect-to-wifi-berrylan/</guid>
                    </item>
				                    <item>
                        <title>Raspberry Pi Zero 2 Randomly Freezing</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/raspberry-pi-zero-2-randomly-freezing/</link>
                        <pubDate>Thu, 28 Aug 2025 00:44:58 +0000</pubDate>
                        <description><![CDATA[Currently running LiveSectional v4.503 on a RasPi Zero 2 Rev 1.0 and regularly have random freezes of everything, either locking my map up with the last pulled METAR data/lights, or with not...]]></description>
                        <content:encoded><![CDATA[<p>Currently running LiveSectional v4.503 on a RasPi Zero 2 Rev 1.0 and regularly have random freezes of everything, either locking my map up with the last pulled METAR data/lights, or with nothing lit up due to it happening while my map is in sleep mode. I enabled debug logging with the hopes of catching something as other posts have suggested here, but when I reboot the pi and pull off all available log files (I've only ever seen logfile.log and logfile.log.1), they are full of 21,000+ lines of logs only from the most recent reboot (i.e., nothing that persisted from the previous running environment when the "freeze" occured). </p>
<p>Worth noting, when the freeze occurs, there is no connectivity via web or SSH (the pi doesn't even return a ping). My next step would be to potentially hook up a monitor and see what the console shows (if anything) when a crash happens - but I would like to avoid that if at all possible. Any thoughts/suggestions/comments would be greatly appreciated, and apologies if I somehow missed a post on this exact scenario (I've searched a good bit so far). Thanks in advance! </p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>FarSide792</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/raspberry-pi-zero-2-randomly-freezing/</guid>
                    </item>
				                    <item>
                        <title>Wifi at work</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/wifi-at-work/</link>
                        <pubDate>Mon, 21 Apr 2025 15:26:38 +0000</pubDate>
                        <description><![CDATA[I tried to connect my map to the wifi at work, it&#039;s an open network with no password but it never connected. Is there anything defined as a Raspberry PI that a company network would block?]]></description>
                        <content:encoded><![CDATA[<p>I tried to connect my map to the wifi at work, it's an open network with no password but it never connected. Is there anything defined as a Raspberry PI that a company network would block?</p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>Captain_Ron</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/wifi-at-work/</guid>
                    </item>
				                    <item>
                        <title>New Pi 3 B+ No Boot?</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/new-pi-3-b-no-boot/</link>
                        <pubDate>Sun, 23 Feb 2025 18:30:02 +0000</pubDate>
                        <description><![CDATA[Hello,
 
I had a setup with a Pi Zero 2 W working until I think the Zero died. I purchased a pi 3 B+ and installed the latest image from the live sectional downloads page. 
I plug it in w...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p>
<p> </p>
<p>I had a setup with a Pi Zero 2 W working until I think the Zero died. I purchased a pi 3 B+ and installed the latest image from the live sectional downloads page. <br /><br /></p>
<p>I plug it in with my official rasp pi power supply, see a solid red light, then get green flashes (5 slow, 7 fast?) plugging into the HDMI port I never get any display to see the boot process. <br /><br /></p>
<p>I’ve edited the config to hdmi safe on by removing the “#” and saving the config file. Still no luck. I’ve tried multiple monitors, cable configurations. <br /><br /></p>
<p>I’ve tried redownloading and imaging using etcher with the same results. I’ve also tried inserting the MicroSD card into a working ADSB pi 3 B+ with the same results. <br /><br /></p>
<p>Additionally, I installed the raspberry OS 64 bit and it works fine (boot, video, etc) with this pi/powersupply/hdmi monitor. I ran the sudo apt updates and everything was up to date. Reinserted the live sectional image with the same non-booting results. <br /><br /></p>
<p>Any ideas?</p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>Anonymous 3802</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/new-pi-3-b-no-boot/</guid>
                    </item>
				                    <item>
                        <title>Power outage issues</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/power-outage-issues/</link>
                        <pubDate>Tue, 16 Jul 2024 00:11:58 +0000</pubDate>
                        <description><![CDATA[Every time the power goes out the map doesn&#039;t start up when power comes back on. I have to unplug it and back in to get it to reboot. Why doesn&#039;t power coming back do that?]]></description>
                        <content:encoded><![CDATA[<p>Every time the power goes out the map doesn't start up when power comes back on. I have to unplug it and back in to get it to reboot. Why doesn't power coming back do that?</p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>Captain_Ron</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/power-outage-issues/</guid>
                    </item>
				                    <item>
                        <title>map errors</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/map-errors-2/</link>
                        <pubDate>Thu, 30 May 2024 00:15:16 +0000</pubDate>
                        <description><![CDATA[Okay so I’ve had some issues back when the first faa site got shut down and had to do a code revision but I finally got it work half way. Fast forward to now, went to go pick it up from the ...]]></description>
                        <content:encoded><![CDATA[<p><span class="s1"></span>Okay so I’ve had some issues back when the first faa site got shut down and had to do a code revision but I finally got it work half way. Fast forward to now, went to go pick it up from the FBO it was displayed at due to being inop. Sure enough I couldn’t get any activity out of it. Console logging was making lines of “king METAR display”   I formatted the card and installed the latest version 4.503. Changed my settings and airport list to be correct and did reboot, led test. LEDs worked. Started map and would do transitions wipe then freeze. Then wipe. Then freeze. Console logging went nuts with lines. Mostly “duplicate METAR data” or something then “Killing METAR display” or such. Not sure what to do. I’ll attach a link to the drive files of the log and console output.</p>
<p>&lt;a title=&quot;drive for logs&quot; href=&quot; <span style="color:#aaa">removed link</span> " target="_blank" rel="noopener"&gt; <span style="color:#aaa">removed link</span> </a> </p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>Aaron Rutherford</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/map-errors-2/</guid>
                    </item>
				                    <item>
                        <title>Map issues</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/map-issues/</link>
                        <pubDate>Wed, 29 May 2024 05:01:43 +0000</pubDate>
                        <description><![CDATA[Okay so I’ve had some issues back when the first faa site got shut down and had to do a code revision but I finally got it work half way. Fast forward to now, went to go pick it up from the ...]]></description>
                        <content:encoded><![CDATA[<pre contenteditable="false"> </pre>
<ul>
<li>Okay so I’ve had some issues back when the first faa site got shut down and had to do a code revision but I finally got it work half way. Fast forward to now, went to go pick it up from the FBO it was displayed at due to being inop. Sure enough I couldn’t get any activity out of it. Console logging was making lines of “king METAR display”   I formatted the card and installed the latest version 4.503. Changed my settings and airport list to be correct and did reboot, led test. LEDs worked. Started map and would do transitions wipe then freeze. Then wipe. Then freeze. Console logging went nuts with lines. Mostly “duplicate METAR data” or something then “Killing METAR display” or such. Not sure what to do. I’ll attach a link to the drive files of the log and console output. <br /><br /></li>
</ul>
<p> <span style="color:#aaa">removed link</span> </p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>Aaron Rutherford</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/map-issues/</guid>
                    </item>
				                    <item>
                        <title>PI randomly stopped working</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/pi-randomly-stopped-working/</link>
                        <pubDate>Sat, 10 Feb 2024 04:18:04 +0000</pubDate>
                        <description><![CDATA[came home from a work trip and board was not working. Can not access from web interface and no lights lit up although verified board is getting power. Like I said cannot access through the w...]]></description>
                        <content:encoded><![CDATA[<p>came home from a work trip and board was not working. Can not access from web interface and no lights lit up although verified board is getting power. Like I said cannot access through the web interface but I did access through ssh and this is what I got back. If you look towards the bottom it looks like it’s not getting data from the faa website but that doesn’t explain why the web interface still won’t work</p>
<p> </p>
<p>any help appreciate  </p>
<p> </p>
<p>Linux LiveSectionalV4 5.10.17+ #1403 Mon Feb 22 11:26:13 GMT 2021 armv6l<br /><br />The programs included with the Debian GNU/Linux system are free software;<br />the exact distribution terms for each program are described in the<br />individual files in /usr/share/doc/*/copyright.<br /><br />Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent<br />permitted by applicable law.<br />Last login: Fri Feb 9 15:38:55 2024<br />pi@LiveSectionalV4:~ $ cd /NeoSectional<br />pi@LiveSectionalV4:/NeoSectional $ sudo python3 webapp.py<br /><br /> <br /><br />Startup of metar-v4.py Script, Version v4.400<br /> Log Level Set To: 10<br /> https://aviationweather-cprk.ncep.noaa.gov/adds/dataserver_current/httpparam?dataSource=stations&amp;requestType=retrieve&amp;format=xml&amp;stationString=<br /> https://aviationweather-cprk.ncep.noaa.gov/adds/dataserver_current/httpparam?dataSource=metars&amp;requestType=retrieve&amp;format=xml&amp;hoursBeforeNow=2.5&amp;mostRecentForEachStation=constraint&amp;stationString=<br /> 21:08:14 - Feb 09, 2024<br /> Settings and Flask Have Been Setup<br /> Internet Available<br /> Startup - Current RPI IP Address = 10.0.0.188<br /> Python Version = 3.7.3 (default, Jul 25 2020, 13:03:44) <br /><br /><br />Python Version = 3.7.3 (default, Jul 25 2020, 13:03:44) <br /><br />LiveSectional Version - v4.400<br />***********************************************<br />My IP Address is = 10.0.0.188<br />***********************************************<br />Configure your LiveSectional by opening a <br />browser to http://10.0.0.188:5000<br />***********************************************<br /><br /><br />Raspberry Pi System Time - 21:08:14 - Feb 09, 2024<br /> In Copy Config file Routine<br /> In ReadConf Routine<br /> autorun, 1<br /> LED_COUNT, 150<br /> legend, 0<br /> max_wind_speed, 15<br /> update_interval, 15<br /> metar_age, 1.5<br /> data_sw0, 1<br /> time_sw0, 1<br /> usetimer, 0<br /> offhour, 21<br /> offminutes, 30<br /> onhour, 6<br /> onminutes, 30<br /> tempsleepon, 5<br /> sleepmsg, 0<br /> displayused, 0<br /> oledused, 0<br /> lcddisplay, 0<br /> numofdisplays, 8<br /> loglevel, 0<br /> hiwindblink, 1<br /> lghtnflash, 1<br /> rainshow, 0<br /> frrainshow, 0<br /> snowshow, 0<br /> dustsandashshow, 0<br /> fogshow, 0<br /> homeport, 1<br /> homeport_pin, 94<br /> homeport_display, 0<br /> dim_value, 75<br /> rgb_grb, 0<br /> rev_rgb_grb, []<br /> dimmed_value, 10<br /> bright_value, 25<br /> color_vfr, (0, 255, 0)<br /> color_mvfr, (0, 0, 255)<br /> color_ifr, (255, 0, 0)<br /> color_lifr, (255, 0, 255)<br /> color_nowx, (80, 80, 80)<br /> color_black, (0, 0, 0)<br /> color_lghtn, (255, 255, 0)<br /> color_snow1, (255, 255, 255)<br /> color_snow2, (100, 100, 100)<br /> color_rain1, (4, 0, 54)<br /> color_rain2, (0, 0, 255)<br /> color_frrain1, (199, 156, 219)<br /> color_frrain2, (152, 0, 199)<br /> color_dustsandash1, (157, 111, 88)<br /> color_dustsandash2, (86, 43, 1)<br /> color_fog1, (80, 80, 80)<br /> color_fog2, (80, 80, 80)<br /> color_homeport, (0, 0, 0)<br /> homeport_colors, <br /> legend_hiwinds, 1<br /> legend_lghtn, 1<br /> legend_snow, 0<br /> legend_rain, 0<br /> legend_frrain, 0<br /> legend_dustsandash, 0<br /> legend_fog, 0<br /> leg_pin_vfr, 7<br /> leg_pin_mvfr, 9<br /> leg_pin_ifr, 8<br /> leg_pin_lifr, 4<br /> leg_pin_nowx, 11<br /> leg_pin_hiwinds, 12<br /> leg_pin_lghtn, 10<br /> leg_pin_snow, 0<br /> leg_pin_rain, 0<br /> leg_pin_frrain, 0<br /> leg_pin_dustsandash, 0<br /> leg_pin_fog, 0<br /> num2display, 10<br /> exclusive_flag, 1<br /> exclusive_list, <br /> abovekts, 0<br /> lcdpause, .3<br /> rotyesno, 0<br /> oledposorder, 0<br /> oledpause, 1.7<br /> fontsize, 24<br /> offset, 3<br /> wind_numorarrow, 1<br /> boldhiap, 1<br /> blankscr, 1<br /> border, 0<br /> dimswitch, 0<br /> dimmin, 50<br /> dimmax, 255<br /> invert, 0<br /> toginv, 0<br /> scrolldis, 0<br /> usewelcome, 1<br /> welcome, "Welcome to Live Sectional V4"<br /> displaytime, 1<br /> displayIP, 1<br /> data_sw1, 1<br /> time_sw1, 1<br /> data_sw2, 1<br /> time_sw2, 1<br /> data_sw3, 1<br /> time_sw3, 1<br /> data_sw4, 1<br /> time_sw4, 1<br /> data_sw5, 1<br /> time_sw5, 1<br /> data_sw6, 1<br /> time_sw6, 1<br /> data_sw7, 1<br /> time_sw7, 1<br /> data_sw8, 1<br /> time_sw8, 1<br /> data_sw9, 1<br /> time_sw9, 1<br /> data_sw10, 1<br /> time_sw10, 1<br /> data_sw11, 1<br /> time_sw11, 1<br /> hour_to_display, 1<br /> prob, 50<br /> bin_grad, 1<br /> use_homeap, 1<br /> fade_yesno, 1<br /> fade_delay, .005<br /> usewipes, 0<br /> rand, 1<br /> wait, .002<br /> num_rainbow, 1<br /> num_fade, 0<br /> fade_color1, (0, 255, 0)<br /> num_allsame, 0<br /> allsame_color1, (20, 5, 207)<br /> allsame_color2, (0, 0, 0)<br /> num_shuffle, 0<br /> shuffle_color1, (250, 0, 242)<br /> shuffle_color2, (225, 255, 0)<br /> num_radar, 3<br /> radar_color1, (75, 73, 73)<br /> radar_color2, (46, 43, 253)<br /> num_circle, 0<br /> circle_color1, (249, 1, 1)<br /> circle_color2, (0, 0, 0)<br /> num_square, 0<br /> square_color1, (223, 100, 64)<br /> square_color2, (0, 0, 0)<br /> num_updn, 0<br /> updn_color1, (255, 0, 0)<br /> updn_color2, (0, 0, 0)<br /> num_morse, 0<br /> morse_msg, "LiveSectional"<br /> morse_color1, (0, 0, 255)<br /> morse_color2, (0, 0, 0)<br /> num_rabbit, 0<br /> rabbit_color1, (255, 0, 0)<br /> rabbit_color2, (0, 50, 250)<br /> num_checker, 0<br /> checker_color1, (0, 255, 0)<br /> checker_color2, (0, 0, 0)<br /> {'autorun': '1', 'LED_COUNT': '150', 'legend': '0', 'max_wind_speed': '15', 'update_interval': '15', 'metar_age': '1.5', 'data_sw0': '1', 'time_sw0': '1', 'usetimer': '0', 'offhour': '21', 'offminutes': '30', 'onhour': '6', 'onminutes': '30', 'tempsleepon': '5', 'sleepmsg': '0', 'displayused': '0', 'oledused': '0', 'lcddisplay': '0', 'numofdisplays': '8', 'loglevel': '0', 'hiwindblink': '1', 'lghtnflash': '1', 'rainshow': '0', 'frrainshow': '0', 'snowshow': '0', 'dustsandashshow': '0', 'fogshow': '0', 'homeport': '1', 'homeport_pin': '94', 'homeport_display': '0', 'dim_value': '75', 'rgb_grb': '0', 'rev_rgb_grb': '[]', 'dimmed_value': '10', 'bright_value': '25', 'color_vfr': '(0, 255, 0)', 'color_mvfr': '(0, 0, 255)', 'color_ifr': '(255, 0, 0)', 'color_lifr': '(255, 0, 255)', 'color_nowx': '(80, 80, 80)', 'color_black': '(0, 0, 0)', 'color_lghtn': '(255, 255, 0)', 'color_snow1': '(255, 255, 255)', 'color_snow2': '(100, 100, 100)', 'color_rain1': '(4, 0, 54)', 'color_rain2': '(0, 0, 255)', 'color_frrain1': '(199, 156, 219)', 'color_frrain2': '(152, 0, 199)', 'color_dustsandash1': '(157, 111, 88)', 'color_dustsandash2': '(86, 43, 1)', 'color_fog1': '(80, 80, 80)', 'color_fog2': '(80, 80, 80)', 'color_homeport': '(0, 0, 0)', 'homeport_colors': '', 'legend_hiwinds': '1', 'legend_lghtn': '1', 'legend_snow': '0', 'legend_rain': '0', 'legend_frrain': '0', 'legend_dustsandash': '0', 'legend_fog': '0', 'leg_pin_vfr': '7', 'leg_pin_mvfr': '9', 'leg_pin_ifr': '8', 'leg_pin_lifr': '4', 'leg_pin_nowx': '11', 'leg_pin_hiwinds': '12', 'leg_pin_lghtn': '10', 'leg_pin_snow': '0', 'leg_pin_rain': '0', 'leg_pin_frrain': '0', 'leg_pin_dustsandash': '0', 'leg_pin_fog': '0', 'num2display': '10', 'exclusive_flag': '1', 'exclusive_list': "", 'abovekts': '0', 'lcdpause': '.3', 'rotyesno': '0', 'oledposorder': '0', 'oledpause': '1.7', 'fontsize': '24', 'offset': '3', 'wind_numorarrow': '1', 'boldhiap': '1', 'blankscr': '1', 'border': '0', 'dimswitch': '0', 'dimmin': '50', 'dimmax': '255', 'invert': '0', 'toginv': '0', 'scrolldis': '0', 'usewelcome': '1', 'welcome': '"Welcome to Live Sectional V4"', 'displaytime': '1', 'displayIP': '1', 'data_sw1': '1', 'time_sw1': '1', 'data_sw2': '1', 'time_sw2': '1', 'data_sw3': '1', 'time_sw3': '1', 'data_sw4': '1', 'time_sw4': '1', 'data_sw5': '1', 'time_sw5': '1', 'data_sw6': '1', 'time_sw6': '1', 'data_sw7': '1', 'time_sw7': '1', 'data_sw8': '1', 'time_sw8': '1', 'data_sw9': '1', 'time_sw9': '1', 'data_sw10': '1', 'time_sw10': '1', 'data_sw11': '1', 'time_sw11': '1', 'hour_to_display': '1', 'prob': '50', 'bin_grad': '1', 'use_homeap': '1', 'fade_yesno': '1', 'fade_delay': '.005', 'usewipes': '0', 'rand': '1', 'wait': '.002', 'num_rainbow': '1', 'num_fade': '0', 'fade_color1': '(0, 255, 0)', 'num_allsame': '0', 'allsame_color1': '(20, 5, 207)', 'allsame_color2': '(0, 0, 0)', 'num_shuffle': '0', 'shuffle_color1': '(250, 0, 242)', 'shuffle_color2': '(225, 255, 0)', 'num_radar': '3', 'radar_color1': '(75, 73, 73)', 'radar_color2': '(46, 43, 253)', 'num_circle': '0', 'circle_color1': '(249, 1, 1)', 'circle_color2': '(0, 0, 0)', 'num_square': '0', 'square_color1': '(223, 100, 64)', 'square_color2': '(0, 0, 0)', 'num_updn': '0', 'updn_color1': '(255, 0, 0)', 'updn_color2': '(0, 0, 0)', 'num_morse': '0', 'morse_msg': '"LiveSectional"', 'morse_color1': '(0, 0, 255)', 'morse_color2': '(0, 0, 0)', 'num_rabbit': '0', 'rabbit_color1': '(255, 0, 0)', 'rabbit_color2': '(0, 50, 250)', 'num_checker': '0', 'checker_color1': '(0, 255, 0)', 'checker_color2': '(0, 0, 0)'}<br /> In ReadAirports Routine<br /> <br /> In Get_Apinfo Routine<br />Number of airports in the list: 150<br />tmp_start: 0<br />tmp_ap: 150<br />tmp_end: 300<br /> &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; FAA Data Not Available &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt; - Attempts Left: 10<br /><br /> https://aviationweather-cprk.ncep.noaa.gov/adds/dataserver_current/httpparam?dataSource=stations&amp;requestType=retrieve&amp;format=xml&amp;stationString=KMCD,KCIU,KANJ,NULL,KDRM,NULL,KSLH,KPLN,KCVX,KSJX,NULL,KERY,NULL,KISQ,NULL,NULL,KSAW,NULL,KIMT,NULL,KESC,NULL,K3D2,KMNM,KSUE,KOCQ,KGRB,KMTW,KSBM,KETB,KMWC,KUES,KMKE,KRAC,KENW,KUGN,KPWK,KORD,K06C,KDPA,KLOT,KMDW,KIGQ,KGYY,KVPZ,KMGC,KPPO,KOXI,KC65,KSBN,KBIV,KLWA,KBEH,NULL,KGSH,KIRS,KC62,KGWB,KANQ,KOEB,KRMY,KAZO,NULL,KGRR,NULL,KMKG,KFFX,KRQB,NULL,KLDM,KMBL,KFKS,KTVC,KACB,KGLR,KGOV,NULL,KCAD,NULL,KMOP,KAMN,NULL,KY70,KFPK,KJXN,KJYM,NULL,KDFI,NULL,KTOL,KADG,KDUH,KTDZ,KTTF,KARB,KOZW,KTEW,KLAN,KRNP,KFNT,KMBS,KHYX,KIKW,NULL,KY31,NULL,NULL,KPZQ,KAPN,NULL,KOSC,NULL,KBAX,KCFS,KD95,KPTK,KYIP,KDTW,KONZ,KDET,KMTC,NULL,NULL,KPCW,NULL,KLPR,KCLE,NULL,KAKR,KPOV,NULL,KBKL,KCGF,KLNN,NULL,NULL,NULL,NULL,KUSE,NULL,NULL,NULL,KASW,NULL,KEKM,KHAI,NULL,NULL,NULL,NULL,<br /> &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; FAA Data Not Available &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt; - Attempts Left: 9<br /><br /> https://aviationweather-cprk.ncep.noaa.gov/adds/dataserver_current/httpparam?dataSource=stations&amp;requestType=retrieve&amp;format=xml&amp;stationString=KMCD,KCIU,KANJ,NULL,KDRM,NULL,KSLH,KPLN,KCVX,KSJX,NULL,KERY,NULL,KISQ,NULL,NULL,KSAW,NULL,KIMT,NULL,KESC,NULL,K3D2,KMNM,KSUE,KOCQ,KGRB,KMTW,KSBM,KETB,KMWC,KUES,KMKE,KRAC,KENW,KUGN,KPWK,KORD,K06C,KDPA,KLOT,KMDW,KIGQ,KGYY,KVPZ,KMGC,KPPO,KOXI,KC65,KSBN,KBIV,KLWA,KBEH,NULL,KGSH,KIRS,KC62,KGWB,KANQ,KOEB,KRMY,KAZO,NULL,KGRR,NULL,KMKG,KFFX,KRQB,NULL,KLDM,KMBL,KFKS,KTVC,KACB,KGLR,KGOV,NULL,KCAD,NULL,KMOP,KAMN,NULL,KY70,KFPK,KJXN,KJYM,NULL,KDFI,NULL,KTOL,KADG,KDUH,KTDZ,KTTF,KARB,KOZW,KTEW,KLAN,KRNP,KFNT,KMBS,KHYX,KIKW,NULL,KY31,NULL,NULL,KPZQ,KAPN,NULL,KOSC,NULL,KBAX,KCFS,KD95,KPTK,KYIP,KDTW,KONZ,KDET,KMTC,NULL,NULL,KPCW,NULL,KLPR,KCLE,NULL,KAKR,KPOV,NULL,KBKL,KCGF,KLNN,NULL,NULL,NULL,NULL,KUSE,NULL,NULL,NULL,KASW,NULL,KEKM,KHAI,NULL,NULL,NULL,NULL,<br /> &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; FAA Data Not Available &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt; - Attempts Left: 8<br /><br /> https://aviationweather-cprk.ncep.noaa.gov/adds/dataserver_current/httpparam?dataSource=stations&amp;requestType=retrieve&amp;format=xml&amp;stationString=KMCD,KCIU,KANJ,NULL,KDRM,NULL,KSLH,KPLN,KCVX,KSJX,NULL,KERY,NULL,KISQ,NULL,NULL,KSAW,NULL,KIMT,NULL,KESC,NULL,K3D2,KMNM,KSUE,KOCQ,KGRB,KMTW,KSBM,KETB,KMWC,KUES,KMKE,KRAC,KENW,KUGN,KPWK,KORD,K06C,KDPA,KLOT,KMDW,KIGQ,KGYY,KVPZ,KMGC,KPPO,KOXI,KC65,KSBN,KBIV,KLWA,KBEH,NULL,KGSH,KIRS,KC62,KGWB,KANQ,KOEB,KRMY,KAZO,NULL,KGRR,NULL,KMKG,KFFX,KRQB,NULL,KLDM,KMBL,KFKS,KTVC,KACB,KGLR,KGOV,NULL,KCAD,NULL,KMOP,KAMN,NULL,KY70,KFPK,KJXN,KJYM,NULL,KDFI,NULL,KTOL,KADG,KDUH,KTDZ,KTTF,KARB,KOZW,KTEW,KLAN,KRNP,KFNT,KMBS,KHYX,KIKW,NULL,KY31,NULL,NULL,KPZQ,KAPN,NULL,KOSC,NULL,KBAX,KCFS,KD95,KPTK,KYIP,KDTW,KONZ,KDET,KMTC,NULL,NULL,KPCW,NULL,KLPR,KCLE,NULL,KAKR,KPOV,NULL,KBKL,KCGF,KLNN,NULL,NULL,NULL,NULL,KUSE,NULL,NULL,NULL,KASW,NULL,KEKM,KHAI,NULL,NULL,NULL,NULL,</p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>matthall1993</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/pi-randomly-stopped-working/</guid>
                    </item>
				                    <item>
                        <title>start up error</title>
                        <link>https://www.livesectional.com/community/raspberry-pi-questions/start-up-error/</link>
                        <pubDate>Wed, 06 Dec 2023 20:45:53 +0000</pubDate>
                        <description><![CDATA[so i attempted to apply the map update on a map i have built and displayed up at local FBO and couldnt get it to connect, brought it home, finally found time to work on it. found the SD card...]]></description>
                        <content:encoded><![CDATA[<p>so i attempted to apply the map update on a map i have built and displayed up at local FBO and couldnt get it to connect, brought it home, finally found time to work on it. found the SD card had correupted somehow so put in a new one and uploaded the files (v4.5xx) and not getting this. help would be much appreciated for myself and the fbo with a big map just hanging out lol</p>
694
<p> </p>]]></content:encoded>
						                            <category domain="https://www.livesectional.com/community/raspberry-pi-questions/">Raspberry Pi Questions</category>                        <dc:creator>Aaron Rutherford</dc:creator>
                        <guid isPermaLink="true">https://www.livesectional.com/community/raspberry-pi-questions/start-up-error/</guid>
                    </item>
							        </channel>
        </rss>
		