Paul Sutton

Paul Sutton – personal blog

American football – Torbay Trojans Video 4

This is the new warm up drill. The idea of this is to develop footwork skills.

Links

Tags

#Trojans,#Football,#Training,#TorbayTrojans, #AlwaysTrojan.#Drill,#Footwork

American football – Torbay Trojans Video 3

So we need to practice lots of things in Football, including various kicking techniques.

Slow motion video of Coach Mark, kicking a ball.

Links

Tags

#Trojans,#Football,#Training,#TorbayTrojans, #AlwaysTrojan.

American football – Torbay Trojans Video 2

Training;

Stretching and warm ups are essential to avoid injuries as as preparation for more rigorous exercise.

Links

Tags

#Trojans,#Football,#Training,#TorbayTrojans, #AlwaysTrojan.

American football – Torbay Trojans Video 1

Training;

Video from a recent training session, this is a ball drill where players need to keep a soccer ball between their knees while navigating a marked out square.

Links

Tags

#Trojans,#Football,#Training,#TorbayTrojans, #AlwaysTrojan.

American football – Torbay Trojans Training 16/7/2023

Training;

  • Date: Sunday 16th July 2023.
  • Time: 10:00 to 13:00
  • Location: Foxhole field, Bellfield Road, Paignton.

pitch

Links

Fixtures

23rd April Wyverns vs Trojans 2pm Kick off 30th April Trojans vs Storm 2pm Kick off 21 May Dreadnoughts vs Trojans 2pm Kick off 28th May Trojans vs Dreadnoughts 2pm Kick off 4th June Trojans vs Monarchs 2pm Kick off

Tags

#Trojans,#Football,#Training,#TorbayTrojans, #AlwaysTrojan

Pi pico Larson Scanner part 3

Following Saturdays STEM Group meet up, Where Vance has rewirtten my scanner program so that it is more efficient. I have included the new code below. I have now made an improvement by adding a 10 segment LED display and getting this working my modifying the code that Vance helped me with.

The new code, using an array to store pin numbers is below

#flash on board pico led
# updated 1/7/2023 - working code
import machine 
import utime

# Vance
led_pins = [11,12,13,14,15]

#delay = input("Time Delay: ")

#bind leds gpip to variables

leds = []
for pin in led_pins:
    # Set to output
    leds.append(machine.Pin(pin, machine.Pin.OUT))
    # Turn the LED off
    leds[-1].value(0) #off
    
    
utime.sleep(3)

delay = 0.1 #set delay

while True:
    # Led sequence upwards
    for led in leds: 
        led.value(1)
        utime.sleep(delay)
        led.value(0)
   
    # Led sequence downwards
    for led in leds[-1:0:-1]:
        led.value(1)
        utime.sleep(delay)
        led.value(0)       

While my new code modification is here.

# use 10 led segment display
led_pins = [1,2,3,4,5,6,7,8,9,]

Which is just 1 line of actual code and a comment. The result of this is presented in the video below. I had to resolder the board with the LED display on as it had some joints missing.

Video

The video can be found here

Tags

#uPython,#RaspberryPiPico,#LarsonScanner,#PhysicalComputing

American football – Torbay Trojans Training 9/7/2023

Training;

  • Date: Sunday 9th July 2023.
  • Time: 10:00 to 13:00
  • Location: Foxhole field, Bellfield Road, Paignton.

pitch

Links

Fixtures

23rd April Wyverns vs Trojans 2pm Kick off 30th April Trojans vs Storm 2pm Kick off 21 May Dreadnoughts vs Trojans 2pm Kick off 28th May Trojans vs Dreadnoughts 2pm Kick off 4th June Trojans vs Monarchs 2pm Kick off

Tags

#Trojans,#Football,#Training,#TorbayTrojans, #AlwaysTrojan,#Fixture,#CornwallMonarchs

STEM Group 8/7/2022 Write up

A good session today, firstly we had Vance, who demonstrated some of his Microcontroller projects.

Neopixel

This project uses neopixel strips which are addressable and programmable. in this project the lights can flash change colour and record light level changes. A video can be found here

IT Room

Microcontroller clock, the colours represent the hours, mins, and seconds. This was taken at about 10:30. A video can be found here

We also did some more Scratch, with people making good progress. Hopefully get back to Python at the next code club on the 22nd July. We also had a go at some Rocks and diamonds, which went really well. I have made some videos on making your own levels.

The LED project I am working on has also been rewritten with help from The code is now more efficient. I will make a new post about this.

IT Room

Useful Links

Links

Next event

  • 15th August – no code club due to other engagement however code club will run on the 22nd instead.
  • 22nd July – Code club
  • 5th August – Code clib
  • 12th August – STEM Group – please see library for details as I am helping with science projects. 19th August – Code Club

Tags

#PaigntonLibrarySTEMGroup

LibreOffice Documentation 07/07/2023

Documentation update(s)

LibreOffice 7.5 guides (Published)

  • Writer 7.5
  • Calc 7.5
  • Math 7.5
  • Impress 7.5
  • Designing with LibreOffice

LibreOffice 7.4 guides (Published)

  • Draw 7.4
  • Getting Started 7.4
  • Calc 7.4
  • Impress 7.4
  • Designing with LibreOffice

REFERENCES

1 LibreOffice 2 LibreOffice Bookshelf 2a LibreOffice Documentation * LibreOffice shortcut keys 3 Free Software Foundation 4 Free Software Foundation Europe 5 LibreOffice Conference 7. Udemy LibreOffice Training

TAGS

#LibreOffice,#Office,#Writer,#Calc,#Base,#Impress #Draw,#GettingStarted,#Documentation,#Libreoffice

Donate using Liberapay

Creative Commons Licence
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License