<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>raspberrypi &amp;mdash; Paul Sutton</title>
    <link>https://personaljournal.ca/paulsutton/tag:raspberrypi</link>
    <description>Personal Blog</description>
    <pubDate>Tue, 05 May 2026 15:00:20 +0000</pubDate>
    <item>
      <title>Logging the weather</title>
      <link>https://personaljournal.ca/paulsutton/logging-the-weather</link>
      <description>&lt;![CDATA[Logging the weather&#xA;&#xA;I have modified the script that runs every 10 minutes to record the output from the ansiweather utility,   This still saves the output to a file but adds the current date to the file name.&#xA;&#xA;now=$(date +&#34;%m%d%Y&#34;)&#xA;echo &#34;Filename : /nas/backup$weather.csv&#34;&#xA;echo $(date &#34;+ %D, %T&#34;), $(ansiweather -l Paignton -a false)     weather$now.csv&#xA;&#xA;So the output looks like&#xA;&#xA; Humidity: 71% - Pressure: 1023 hPa&#xA;06/09/25, 14:20:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.79 m/s WSW - Humidity: 69% - Pressure: 1024 hPa&#xA;06/09/25, 14:30:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 2.24 m/s SW - Humidity: 70% - Pressure: 1023 hPa&#xA;06/09/25, 14:40:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 3.13 m/s W - Humidity: 69% - Pressure: 1023 hPa&#xA;06/09/25, 14:50:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.79 m/s SW - Humidity: 69% - Pressure: 1023 hPa&#xA;06/09/25, 15:00:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.79 m/s WSW - Humidity: 71% - Pressure: 1023 hPa&#xA;06/09/25, 15:10:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.34 m/s SSW - Humidity: 71% - Pressure: 1024 hPa&#xA;&#xA;As this runs on a headless pi4,  I can login and copy the data files locally before uploading to my gopherspace (Look it up) &#xA;&#xA;gopher://vern.cc/1/~zleap&#xA;&#xA;Tags&#xA;&#xA;#Bash,#BashScripting,#Data,#Logging,#Gopher,#RaspberryPi,&#xA;Weather&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Logging the weather</p>

<p>I have modified the script that runs every 10 minutes to record the output from the ansiweather utility,   This still saves the output to a file but adds the current date to the file name.</p>

<pre><code class="language-bash">now=$(date +&#34;%m_%d_%Y&#34;)
echo &#34;Filename : /nas/backup_$weather.csv&#34;
echo $(date &#34;+ %D, %T&#34;), $(ansiweather -l Paignton -a false) &gt;&gt; weather_$now.csv
</code></pre>

<p>So the output looks like</p>

<pre><code> Humidity: 71% - Pressure: 1023 hPa
06/09/25, 14:20:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.79 m/s WSW - Humidity: 69% - Pressure: 1024 hPa
06/09/25, 14:30:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 2.24 m/s SW - Humidity: 70% - Pressure: 1023 hPa
06/09/25, 14:40:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 3.13 m/s W - Humidity: 69% - Pressure: 1023 hPa
06/09/25, 14:50:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.79 m/s SW - Humidity: 69% - Pressure: 1023 hPa
06/09/25, 15:00:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.79 m/s WSW - Humidity: 71% - Pressure: 1023 hPa
06/09/25, 15:10:01, Weather in Paignton: 18 °C - UVI: 7.03 - Wind: 1.34 m/s SSW - Humidity: 71% - Pressure: 1024 hPa
</code></pre>

<p>As this runs on a headless pi4,  I can login and copy the data files locally before uploading to my gopherspace (<strong>Look it up</strong>)</p>

<pre><code>gopher://vern.cc/1/~zleap
</code></pre>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Bash" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Bash</span></a>,<a href="/paulsutton/tag:BashScripting" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">BashScripting</span></a>,<a href="/paulsutton/tag:Data" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Data</span></a>,<a href="/paulsutton/tag:Logging" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Logging</span></a>,<a href="/paulsutton/tag:Gopher" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Gopher</span></a>,<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,
<a href="/paulsutton/tag:Weather" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Weather</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/logging-the-weather</guid>
      <pubDate>Mon, 09 Jun 2025 14:23:22 +0000</pubDate>
    </item>
    <item>
      <title>Exeter Pi jam</title>
      <link>https://personaljournal.ca/paulsutton/exeter-pi-jam</link>
      <description>&lt;![CDATA[Exeter Pi jam&#xA;&#xA;The next Exeter Pi jam, takes place on Saturday, 3rd May, Rougemont room, Exeter Library.&#xA;&#xA;Start 10am&#xA;&#xA;Tags&#xA;&#xA;#Event,#Exeter,#RaspberryPiJam,#RaspberryPi,#Coding.&#xA;#Programming,#Hacking,#Making&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Exeter Pi jam</p>

<p>The next <a href="https://devonconnect.org/activity/exeter-raspberry-pi-jam1" rel="nofollow">Exeter Pi jam</a>, takes place on Saturday, 3rd May, Rougemont room, Exeter Library.</p>

<p>Start 10am</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Event" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Event</span></a>,<a href="/paulsutton/tag:Exeter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Exeter</span></a>,<a href="/paulsutton/tag:RaspberryPiJam" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPiJam</span></a>,<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Coding" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Coding</span></a>.
<a href="/paulsutton/tag:Programming" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Programming</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/exeter-pi-jam</guid>
      <pubDate>Sun, 27 Apr 2025 11:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Visit to Exeter Pi Jam - April</title>
      <link>https://personaljournal.ca/paulsutton/visit-to-exeter-pi-jam-april</link>
      <description>&lt;![CDATA[Visit to Exeter Pi Jam - April&#xA;&#xA;I went up to the Exeter Pi jam today and took my old AIY voice kit with me, spent some time with Trevor trying to get this working.  &#xA;&#xA;We downloaded the image from the AIY Projects website.   As my version of this was, we think from 2017,  (or that was the date on the magazine I got with it)  then we tried the two images that were released for that year.&#xA;&#xA;We downloaded and wrote the image fine,  but both kernel panicked when booted, so further investigation needed.&#xA;&#xA;Other projects included a weather station and a cycle helmet equipped with two cameras and some neopixel strips.&#xA;&#xA;Next Event&#xA;&#xA;Next Exeter Pi Jam,   Exeter Library. Sat 3rd May 10am to 12&#xA;&#xA;Tags&#xA;&#xA;#Exeter,#Event,#RaspberryPi,#Projects,#Hacking,#Making&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Visit to Exeter Pi Jam – April</p>

<p>I went up to the Exeter Pi jam today and took my old AIY voice kit with me, spent some time with Trevor trying to get this working.</p>

<p>We downloaded the image from the <a href="https://aiyprojects.withgoogle.com/voice/" rel="nofollow">AIY Projects</a> website.   As my version of this was, we think from 2017,  (or that was the date on the magazine I got with it)  then we tried the two images that were released for that year.</p>

<p>We downloaded and wrote the image fine,  but both kernel panicked when booted, so further investigation needed.</p>

<p>Other projects included a weather station and a cycle helmet equipped with two cameras and some neopixel strips.</p>

<p><strong>Next Event</strong></p>
<ul><li>Next <a href="https://devonconnect.org/activity/exeter-raspberry-pi-jam1" rel="nofollow">Exeter Pi Jam</a>,   Exeter Library. Sat 3rd May 10am to 12</li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Exeter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Exeter</span></a>,<a href="/paulsutton/tag:Event" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Event</span></a>,<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Projects" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Projects</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/visit-to-exeter-pi-jam-april</guid>
      <pubDate>Sat, 05 Apr 2025 15:00:52 +0000</pubDate>
    </item>
    <item>
      <title>Tinkerers Meeting - April 2025</title>
      <link>https://personaljournal.ca/paulsutton/tinkerers-meeting-april-2025</link>
      <description>&lt;![CDATA[Tinkerers Meeting - April 2025&#xA;&#xA;The next meeting of the Tor bay Tinkerers group will be on Saturday 26th April 2025 at 9:30&#xA;&#xA;We meet at:-&#xA;&#xA;STEAM Cafe &amp; Discovery Centre&#xA;13 Torbay Road, Paignton.&#xA;&#xA;Possible topics&#xA;&#xA;TBC&#xA;&#xA;Dragster Race Car update&#xA;Snap Electronics&#xA;Controlling Cnc Machines with Arduino (TBC)&#xA;Other projects&#xA;&#xA;To give you an idea of what we have been up to, please see the write-up from  March&#xA;&#xA;If you would like to ask any questions, please see our Facebook page&#xA;&#xA;Links&#xA;&#xA;Arduino&#xA;Raspberry Pi&#xA;  Raspberry Pi 5  &#xA;  Raspberry Pi 4&#xA;  Raspberry Pi 3&#xA;Humble Bundle - Embedded Intelligence&#xA;&#xA;Tags&#xA;&#xA;#Torbay,#Tinkerers,#Electronics,#Hacking,#Arduino,&#xA;#RaspberryPi,#Making&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Tinkerers Meeting – April 2025</p>

<p>The next meeting of the <a href="http://www.tinkerers.uk/" rel="nofollow">Tor bay Tinkerers</a> group will be on <strong>Saturday 26th April</strong> 2025 at 9:30</p>

<p>We meet at:-</p>

<p><a href="https://www.facebook.com/people/STEAM-Paignton/61564393025280/" rel="nofollow">STEAM Cafe &amp; Discovery Centre</a>
13 Torbay Road, Paignton.</p>

<p><strong>Possible topics</strong></p>

<p>TBC</p>
<ul><li>Dragster Race Car update</li>
<li>Snap Electronics</li>
<li>Controlling Cnc Machines with Arduino (TBC)</li>
<li>Other projects</li></ul>

<p>To give you an idea of what we have been up to, please see the write-up from  <a href="https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025-write-up" rel="nofollow">March</a></p>

<p>If you would like to ask any questions, please see our <a href="https://www.facebook.com/profile.php?id=61554348046709" rel="nofollow">Facebook page</a></p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.arduino.cc/" rel="nofollow">Arduino</a></li>
<li><a href="https://www.raspberrypi.org/" rel="nofollow">Raspberry Pi</a>
<ul><li><a href="https://www.raspberrypi.com/products/raspberry-pi-5/" rel="nofollow">Raspberry Pi 5</a><br></li>
<li><a href="https://www.raspberrypi.com/products/raspberry-pi-4-model-b/" rel="nofollow">Raspberry Pi 4</a></li>
<li><a href="https://www.raspberrypi.com/products/raspberry-pi-3-model-b/" rel="nofollow">Raspberry Pi 3</a></li></ul></li>
<li><a href="https://www.humblebundle.com/books/embedded-intelligence-packt-books?linkID=67e6e8ff12a441e9e7076db2&mcID=102%3A67e6e3a0ea91abd1180291ff%3Aot%3A673e0b70dbeb76758e545720%3A1" rel="nofollow">Humble Bundle – Embedded Intelligence</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Torbay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Torbay</span></a>,<a href="/paulsutton/tag:Tinkerers" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tinkerers</span></a>,<a href="/paulsutton/tag:Electronics" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Electronics</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Arduino" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Arduino</span></a>,
<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/tinkerers-meeting-april-2025</guid>
      <pubDate>Thu, 03 Apr 2025 07:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Tinkerers Meeting – March 2025 – Write Up pt 2</title>
      <link>https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025-write-up-pt-2</link>
      <description>&lt;![CDATA[Tinkerers Meeting – March 2025 – Write Up pt 2&#xA;&#xA;Another post with the videos from the meeting.&#xA;&#xA;Video 1 - Drag car&#xA;Video 2 OA Robot&#xA;Video 3 - Trains&#xA;Video 4 Micro:bit car&#xA;&#xA;Next Meeting&#xA;&#xA;The next meeting of the Tor bay Tinkerers group will be on Saturday 26th April 2025 at 9:30&#xA;&#xA;Tags&#xA;&#xA;#Torbay,#Tinkerers,#Electronics,#Hacking,#Arduino,&#xA;#RaspberryPi,#Making&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Tinkerers Meeting – March 2025 – Write Up pt 2</p>

<p>Another post with the videos from the meeting.</p>
<ul><li><a href="https://diode.zone/w/quP1fgmCRYqSggMBsgg8bu" rel="nofollow">Video 1 – Drag car</a></li>
<li><a href="https://diode.zone/w/7s2bRtaTLyhxGAoQPb4Dds" rel="nofollow">Video 2 OA Robot</a></li>
<li><a href="https://diode.zone/w/i6eKajM6j4LixcUDptTBRE" rel="nofollow">Video 3 – Trains</a></li>
<li><a href="https://diode.zone/w/28Yw67kNf2RMpDcjHucnrC" rel="nofollow">Video 4 Micro:bit car</a></li></ul>

<p><strong>Next Meeting</strong></p>

<p>The next meeting of the <a href="http://www.tinkerers.uk/" rel="nofollow">Tor bay Tinkerers</a> group will be on <strong>Saturday 26th April</strong> 2025 at 9:30</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Torbay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Torbay</span></a>,<a href="/paulsutton/tag:Tinkerers" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tinkerers</span></a>,<a href="/paulsutton/tag:Electronics" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Electronics</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Arduino" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Arduino</span></a>,
<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025-write-up-pt-2</guid>
      <pubDate>Mon, 31 Mar 2025 06:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Tinkerers Meeting - March 2025 - Write Up</title>
      <link>https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025-write-up</link>
      <description>&lt;![CDATA[Tinkerers Meeting - March 2025 - Write Up&#xA;&#xA;Meeting held at STEAM Cafe &amp; Discovery Centre&#xA;13 Torbay Road, Paignton.&#xA;&#xA;It was just myself and Helen again this month, but we were busy testing Helen&#39;s Robot Drag car, this can now go the distance in &lt;2 seconds, which is the target time.    It does seem to spin after slowing down.&#xA;&#xA;pic&#xA;&#xA;The Obstacle avoiding (OA) robot now works, and now has two programs attached to it, one is the OA mode, and the other it is programmed to moved around as if dancing. &#xA;&#xA;pic&#xA;&#xA;The code is now on my laptop, so can be uploaded as needed, depending on what is required. &#xA;&#xA;We also had a look at the Micro:bit car that belongs to Lucy M,  this again works, beeps, the LEDs are a little bright, which is great in the dark.&#xA;&#xA;pic&#xA;&#xA;I also had a look at the Snap Electronics kit and built up a few basic circuits including a transistor Amp.&#xA;&#xA;pic&#xA;&#xA;pic&#xA;&#xA;pic&#xA;&#xA;A basic LED with switch&#xA;&#xA;pic&#xA;&#xA;Transistor (NPN) amplifier with LED off&#xA;&#xA;pic&#xA;&#xA;Transistor (NPN) amplifier with LED On&#xA;&#xA;pic&#xA;&#xA;Transistor (NPN) amplifier with instructions.&#xA;&#xA;The STEAM discovery centre also has a nice train set.  This is Thomas the tank engine themed, but has track, points to change tracks and carriages for the trains.&#xA;&#xA;pic&#xA;&#xA;If you would like to ask any questions, please see our Facebook page&#xA;&#xA;Links&#xA;&#xA;Arduino&#xA;Raspberry Pi&#xA;&#xA;Tags&#xA;&#xA;#Torbay,#Tinkerers,#Electronics,#Hacking,#Arduino,&#xA;#RaspberryPi,#Making)&#xA;&#xA;Links&#xA;&#xA;Arduino&#xA;Raspberry Pi&#xA;&#xA;If you would like to ask any questions, please message Helen via our Facebook page&#xA;&#xA;Tags&#xA;&#xA;#Torbay,#Tinkerers,#Electronics,#Hacking,#Arduino,&#xA;#RaspberryPi,#Making&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Tinkerers Meeting – March 2025 – Write Up</p>

<p>Meeting held at <a href="https://www.facebook.com/people/STEAM-Paignton/61564393025280/" rel="nofollow">STEAM Cafe &amp; Discovery Centre</a>
13 Torbay Road, Paignton.</p>

<p>It was just myself and Helen again this month, but we were busy testing Helen&#39;s Robot Drag car, this can now go the distance in &lt;2 seconds, which is the target time.    It does seem to spin after slowing down.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/dragcar.JPG" alt="pic"></p>

<p>The Obstacle avoiding (OA) robot now works, and now has two programs attached to it, one is the OA mode, and the other it is programmed to moved around as if dancing.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/OA-Robot.JPG" alt="pic"></p>

<p>The code is now on my laptop, so can be uploaded as needed, depending on what is required.</p>

<p>We also had a look at the Micro:bit car that belongs to Lucy M,  this again works, beeps, the LEDs are a little bright, which is great in the dark.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/Microbitcar.JPG" alt="pic"></p>

<p>I also had a look at the Snap Electronics kit and built up a few basic circuits including a transistor Amp.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/snapkit.JPG" alt="pic"></p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/snapcomponents.JPG" alt="pic"></p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/snapcircuit.JPG" alt="pic"></p>

<p>A basic LED with switch</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/snapamp.JPG" alt="pic"></p>

<p>Transistor (NPN) amplifier with LED off</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/snapamp2.JPG" alt="pic"></p>

<p>Transistor (NPN) amplifier with LED On</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/snapamp3.JPG" alt="pic"></p>

<p>Transistor (NPN) amplifier with instructions.</p>

<p>The STEAM discovery centre also has a nice train set.  This is Thomas the tank engine themed, but has track, points to change tracks and carriages for the trains.</p>

<p><img src="https://salsa.debian.org/zleap-guest/blog-media/-/raw/master/Trains.JPG" alt="pic"></p>

<p>If you would like to ask any questions, please see our <a href="https://www.facebook.com/profile.php?id=61554348046709" rel="nofollow">Facebook page</a></p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.arduino.cc/" rel="nofollow">Arduino</a></li>
<li><a href="https://www.raspberrypi.org/" rel="nofollow">Raspberry Pi</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Torbay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Torbay</span></a>,<a href="/paulsutton/tag:Tinkerers" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tinkerers</span></a>,<a href="/paulsutton/tag:Electronics" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Electronics</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Arduino" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Arduino</span></a>,
<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a>)</p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.arduino.cc/" rel="nofollow">Arduino</a></li>
<li><a href="https://www.raspberrypi.org/" rel="nofollow">Raspberry Pi</a></li></ul>

<p>If you would like to ask any questions, please message Helen via our <a href="https://www.facebook.com/profile.php?id=61554348046709" rel="nofollow">Facebook page</a></p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Torbay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Torbay</span></a>,<a href="/paulsutton/tag:Tinkerers" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tinkerers</span></a>,<a href="/paulsutton/tag:Electronics" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Electronics</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Arduino" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Arduino</span></a>,
<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025-write-up</guid>
      <pubDate>Sat, 29 Mar 2025 13:05:32 +0000</pubDate>
    </item>
    <item>
      <title>Tinkerers Meeting - March 2025</title>
      <link>https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025</link>
      <description>&lt;![CDATA[Tinkerers Meeting - March 2025&#xA;&#xA;The next meeting of the Tor bay Tinkerers group will be on Saturday 29th March 2025 at 9:30.  Just reposting this as a reminder.&#xA;&#xA;We meet at:-&#xA;&#xA;STEAM Cafe &amp; Discovery Centre&#xA;13 Torbay Road, Paignton.&#xA;&#xA;Possible topics&#xA;&#xA;Dragster Race Car update&#xA;Testing IR robot car - This should now be fixed&#xA;Micro:bit projects&#xA;&#xA;To give you an idea of what we have been up to, please see the write-up from  Feb 2025&#xA;&#xA;If you would like to ask any questions, please see our Facebook page&#xA;&#xA;Links&#xA;&#xA;Arduino&#xA;Raspberry Pi&#xA;&#xA;Tags&#xA;&#xA;#Torbay,#Tinkerers,#Electronics,#Hacking,#Arduino,&#xA;#RaspberryPi,#Making&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Tinkerers Meeting – March 2025</p>

<p>The next meeting of the <a href="http://www.tinkerers.uk/" rel="nofollow">Tor bay Tinkerers</a> group will be on <strong>Saturday 29th March</strong> 2025 at 9:30.  Just reposting this as a reminder.</p>

<p>We meet at:-</p>

<p><a href="https://www.facebook.com/people/STEAM-Paignton/61564393025280/" rel="nofollow">STEAM Cafe &amp; Discovery Centre</a>
13 Torbay Road, Paignton.</p>

<p><strong>Possible topics</strong></p>
<ul><li>Dragster Race Car update</li>
<li>Testing IR robot car – This should now be fixed</li>
<li>Micro:bit projects</li></ul>

<p>To give you an idea of what we have been up to, please see the write-up from  <a href="https://personaljournal.ca/paulsutton/tinkerers-feb-25" rel="nofollow">Feb 2025</a></p>

<p>If you would like to ask any questions, please see our <a href="https://www.facebook.com/profile.php?id=61554348046709" rel="nofollow">Facebook page</a></p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.arduino.cc/" rel="nofollow">Arduino</a></li>
<li><a href="https://www.raspberrypi.org/" rel="nofollow">Raspberry Pi</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Torbay" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Torbay</span></a>,<a href="/paulsutton/tag:Tinkerers" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Tinkerers</span></a>,<a href="/paulsutton/tag:Electronics" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Electronics</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a>,<a href="/paulsutton/tag:Arduino" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Arduino</span></a>,
<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Making" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Making</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/tinkerers-meeting-march-2025</guid>
      <pubDate>Fri, 28 Mar 2025 07:32:42 +0000</pubDate>
    </item>
    <item>
      <title>Amazon&#39;s Ring used to spy on customers, FTC says in privacy settlement</title>
      <link>https://personaljournal.ca/paulsutton/amazons-ring-used-to-spy-on-customers-ftc-says-in-privacy-settlement</link>
      <description>&lt;![CDATA[Amazon&#39;s Ring used to spy on customers, FTC says in privacy settlement&#xA;&#xA;Posted to the Fediverse yesterday. This is a stark warning about how technology can do what it wants, and how when we don&#39;t have access to the code that makes it work,  we don&#39;t know what it is doing.&#xA;&#xA;A good reason to support software freedom&#xA;&#xA;Amazon&#39;s Ring used to spy on customers&#xA;&#xA;You are better off with a RaspberryPi and a Camera Module along with a suitable programming language such as Python and hacking your own. &#xA;&#xA;We can perhaps discuss at a future STEM Group.&#xA;&#xA;Tags&#xA;&#xA;#Amazon#Ring,#Privacy,#Spying.#Alternative,#FreeSoftware,#Python,#RaspberryPi,#CameraModule,#Hardware,#Hacking &#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Amazon&#39;s Ring used to spy on customers, FTC says in privacy settlement</p>

<p>Posted to the <a href="https://axbom.medium.com/the-many-branches-of-the-fediverse-156dfb71f82f" rel="nofollow">Fediverse</a> yesterday. This is a stark warning about how technology can do what it wants, and how when we don&#39;t have access to the code that makes it work,  we don&#39;t know what it is doing.</p>

<p>A good reason to support <a href="https://www.gnu.org" rel="nofollow">software freedom</a></p>
<ul><li><a href="https://www.reuters.com/legal/us-ftc-sues-amazoncoms-ring-2023-05-31/" rel="nofollow">Amazon&#39;s Ring used to spy on customers</a></li></ul>

<p>You are better off with a <a href="https://www.raspberrypi.org" rel="nofollow">RaspberryPi</a> and a <a href="https://www.raspberrypi.com/products/camera-module-3/" rel="nofollow">Camera Module</a> along with a suitable programming language such as <a href="https://www.python.org" rel="nofollow">Python</a> and hacking your own.</p>

<p>We can perhaps discuss at a future <a href="https://personaljournal.ca/paigntonlibrarystemgroup/" rel="nofollow">STEM Group</a>.</p>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:Amazon" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Amazon</span></a><a href="/paulsutton/tag:Ring" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Ring</span></a>,<a href="/paulsutton/tag:Privacy" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Privacy</span></a>,<a href="/paulsutton/tag:Spying" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Spying</span></a>.<a href="/paulsutton/tag:Alternative" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Alternative</span></a>,<a href="/paulsutton/tag:FreeSoftware" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FreeSoftware</span></a>,<a href="/paulsutton/tag:Python" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Python</span></a>,<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:CameraModule" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CameraModule</span></a>,<a href="/paulsutton/tag:Hardware" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hardware</span></a>,<a href="/paulsutton/tag:Hacking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Hacking</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/amazons-ring-used-to-spy-on-customers-ftc-says-in-privacy-settlement</guid>
      <pubDate>Fri, 02 Jun 2023 11:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Astro PI mission zero 2022</title>
      <link>https://personaljournal.ca/paulsutton/astro-pi-mission-zero-2022</link>
      <description>&lt;![CDATA[Astro PI mission zero 2022&#xA;&#xA;This years challenge launched on 22nd September.&#xA;&#xA;Mission Zero offers young people the chance to have their code run in space! Write a simple program to take a reading from the colour and luminosity sensor on an Astro Pi computer on board the International Space Station, and use it to set the background colour in a personalised image for the astronauts to see as they go about their daily tasks.&#xA;&#xA;Entries for Mission Zero 2022/23 are open from 22 September 2022 to 17 March 2023. &#xA;&#xA;Links&#xA;&#xA;AstroPi - Mission Zero&#xA;&#xA;Tags&#xA;&#xA;#AstroPi,#RaspberryPi,#ISS,#Coding,#STEM,#MissionZero,#CodeClub&#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Astro PI mission zero 2022</p>

<p>This years challenge launched on 22nd September.</p>

<pre><code>Mission Zero offers young people the chance to have their code run in space! Write a simple program to take a reading from the colour and luminosity sensor on an Astro Pi computer on board the International Space Station, and use it to set the background colour in a personalised image for the astronauts to see as they go about their daily tasks.

Entries for Mission Zero 2022/23 are open from 22 September 2022 to 17 March 2023. 
</code></pre>

<p><strong>Links</strong></p>
<ul><li><a href="https://astro-pi.org/mission-zero/" rel="nofollow">AstroPi – Mission Zero</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:AstroPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">AstroPi</span></a>,<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:ISS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">ISS</span></a>,<a href="/paulsutton/tag:Coding" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Coding</span></a>,<a href="/paulsutton/tag:STEM" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">STEM</span></a>,<a href="/paulsutton/tag:MissionZero" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">MissionZero</span></a>,<a href="/paulsutton/tag:CodeClub" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CodeClub</span></a></p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/astro-pi-mission-zero-2022</guid>
      <pubDate>Fri, 23 Sep 2022 15:23:47 +0000</pubDate>
    </item>
    <item>
      <title>Code Club 17/9/2022</title>
      <link>https://personaljournal.ca/paulsutton/code-club-17-9-2022</link>
      <description>&lt;![CDATA[Code Club 17/9/2022 &#xA;&#xA;The next Paignton Library code club is on 17th September.   There will be the usual mix of coding, troubleshooting and discussions.  I&#xA;&#xA;We now have some of the Vodafone resources so will be sharing them if anyone is interested. &#xA;&#xA;We still have a few printed resources, which will be binned if no one wants them.   Simple fact is, we are running out of space.&#xA;&#xA;Links&#xA;&#xA;Paignton Library&#xA;Code Club&#xA;  Projects and activities&#xA;  Environment&#xA;  Space Projects&#xA;  Scratch&#xA;E-safety&#xA;        Vodafone digital parenting&#xA;    Social media Checklist&#xA;Online information&#xA;Sense about Science&#xA;  Sense about Science - peer review&#xA;Supporting critical thinking and reliability online&#xA;LateX Bibliographies&#xA;&#xA;Tags&#xA;&#xA;#CodeClub,#Information,#RaspberryPi,#Troubleshooting,&#xA;#esafety,#misinformation,#SenseAboutScience,#Vodafone,&#xA;#DigitalParenting,#StudySkills&#xA;&#xA;Next session&#xA;&#xA;Next Week is the STEM Group meeting 10/9/2022&#xA;Next Code Club is Saturday 17th September 2022. &#xA;&#xA;Please contact Paignton Library for details and booking. &#xA;&#xA;hr&#xD;&#xA;&#xD;&#xA;table&#xD;&#xA;thead&#xD;&#xA;trtda rel=&#34;me&#34; href=&#34;https://qoto.org/@zleap&#34;Mastodon/a/td&#xD;&#xA;tda href=&#34;https://wiki.ircnow.org/?n=Shelllabs.Intro&#34;ShellLabs/td&#xD;&#xA;tda href=&#34;https://joinmastodon.org/&#34;Join Mastodon/a/td/tr/thead/table&#xD;&#xA;center&#xD;&#xA;AI statement : b Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. /b&#xD;&#xA;/center&#xD;&#xA;&#xD;&#xA;a href=&#34;https://liberapay.com/PaulSutton/donate&#34;img alt=&#34;Donate using Liberapay&#34; src=&#34;https://liberapay.com/assets/widgets/donate.svg&#34;/a&#xD;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Code Club 17/9/2022</p>

<p>The next Paignton Library code club is on 17th September.   There will be the usual mix of coding, troubleshooting and discussions.  I</p>

<p>We now have some of the Vodafone resources so will be sharing them if anyone is interested.</p>

<p>We still have a few printed resources, which will be binned if no one wants them.   Simple fact is, we are running out of space.</p>

<p><strong>Links</strong></p>
<ul><li><a href="https://www.torbaylibraries.org.uk/web/arena/paigntonlibrary" rel="nofollow">Paignton Library</a></li>
<li><a href="https://codeclub.org/en/" rel="nofollow">Code Club</a>
<ul><li><a href="https://projects.raspberrypi.org/en" rel="nofollow">Projects and activities</a></li>
<li><a href="https://projects.raspberrypi.org/en/pathways/protect-our-planet" rel="nofollow">Environment</a></li>
<li><a href="https://rpf.io/space-projects" rel="nofollow">Space Projects</a></li>
<li><a href="https://scratch.mit.edu/" rel="nofollow">Scratch</a></li></ul></li>
<li>E-safety
    * <a href="https://www.vodafone.co.uk/mobile/digital-parenting/" rel="nofollow">Vodafone digital parenting</a>
<ul><li><a href="https://swgfl.org.uk/resources/checklists/" rel="nofollow">Social media Checklist</a></li></ul></li>
<li>Online information</li>
<li><a href="https://senseaboutscience.org/" rel="nofollow">Sense about Science</a>
<ul><li><a href="https://senseaboutscience.org/activities/peer-review/" rel="nofollow">Sense about Science – peer review</a></li></ul></li>
<li><a href="https://saferinternet.org.uk/online-issue/misinformation" rel="nofollow">Supporting critical thinking and reliability online</a></li>
<li><a href="https://personaljournal.ca/paulsutton/how-to-generate-references-with-latex-bibtex" rel="nofollow">LateX Bibliographies</a></li></ul>

<p><strong>Tags</strong></p>

<p><a href="/paulsutton/tag:CodeClub" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CodeClub</span></a>,<a href="/paulsutton/tag:Information" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Information</span></a>,<a href="/paulsutton/tag:RaspberryPi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">RaspberryPi</span></a>,<a href="/paulsutton/tag:Troubleshooting" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Troubleshooting</span></a>,
<a href="/paulsutton/tag:esafety" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">esafety</span></a>,<a href="/paulsutton/tag:misinformation" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">misinformation</span></a>,<a href="/paulsutton/tag:SenseAboutScience" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">SenseAboutScience</span></a>,<a href="/paulsutton/tag:Vodafone" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Vodafone</span></a>,
<a href="/paulsutton/tag:DigitalParenting" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">DigitalParenting</span></a>,<a href="/paulsutton/tag:StudySkills" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">StudySkills</span></a></p>

<p><strong>Next session</strong></p>
<ul><li>Next Week is the STEM Group meeting 10/9/2022</li>
<li>Next Code Club is <strong>Saturday 17th September 2022</strong>.</li></ul>

<p>Please contact Paignton Library for details and booking.</p>

<hr>

<p><table>
<thead>
<tr><td><a href="https://qoto.org/@zleap" rel="nofollow">Mastodon</a></td>
<td><a href="https://wiki.ircnow.org/?n=Shelllabs.Intro" rel="nofollow">ShellLabs</td>
<td><a href="https://joinmastodon.org/" rel="nofollow">Join Mastodon</a></td></tr></thead></table>

AI statement : <b> Consent is NOT granted to use the content of this blog for the purposes of AI training or similar activity.  Consent CANNOT be assumed, it has to be granted. </b>
</p>

<p><a href="https://liberapay.com/PaulSutton/donate" rel="nofollow"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></p>
]]></content:encoded>
      <guid>https://personaljournal.ca/paulsutton/code-club-17-9-2022</guid>
      <pubDate>Sat, 10 Sep 2022 15:32:30 +0000</pubDate>
    </item>
  </channel>
</rss>