AYDENCLAY.com

Home About Portfolio Contact

My Projects & Portfolio

Here are some of my public projects from GitHub. Click on a project title to visit its repository.

space_rover

Rover and drone co-operation project

Language: N/A ⭐ 0 Stars 🍴 0 Forks Last Updated: Aug 27, 2025

Space Rover

This repository captures activities related to the development of a space rover.

The space rover project includes a drone that is used to survey the area.

Hardware

This hardware list is being generated ad-hoc and will definitely not include every cable, connector, etc.

  • 2x Raspberry Pi zero w.
  • STM32H.
  • STM32N.
  • STM32F.
  • STLINK V2.
  • YP-05 Serial board.

Development Plan

This section contains the plan for development of the system.

Design Phase

This phase intends to capture the concept of operations and any requirements on the proposed system. Why create it? What problems does it solve? What environment does it operate in?

Minimum Working Phase

This phase intends to capture the minimum required functionality to serve the purpose of it's creation (the systems purpose, not the projects purpose; which is to learn).

Additional Functionality Phase

This phase intends to capture additional functionality that would significantly increase the utility or entertainment value of the system.

Pre-release Phase

This phase intends to capture the necessary steps prior to release of the system as a project or product.

Post-release Phase

This phase intends to capture the necessary steps after release to maintain and improve the system.

Website

The development of the system is posted about on my website: AydenClay.com

midi_web_app

Allows midi to send over a web socket.

Language: Python ⭐ 0 Stars 🍴 0 Forks Last Updated: Jul 26, 2025

Midi web app

This populates a database with useful information for passing midi information over a local network.

midi_player

A game for learning the notes on a piano stave, using midi input from a keyboard.

Language: Python ⭐ 0 Stars 🍴 0 Forks Last Updated: Jul 14, 2025

MIDIPLAYER

led_ambience

Configure LEDs to match the HDMI input from a TV.

Language: Python ⭐ 0 Stars 🍴 0 Forks Last Updated: Jul 14, 2025

led_ambience

This project aims to take in HDMI source and output coordinates or in some way light up a programmable LED strip with the correct lighting effect based on the HDMI screen.

Objective

  • [x] To have a basic testing facility for the above. This includes:
  • [x] Generateable "screen" that plots out and is a length x height rectangle made up of x x y pixels of the appropriate size.
  • [x] Generateable "strip" that plots around the edge of the above screen a configurable number of n LED's (colored dots).
  • [x] The color of the dots will be in some way selected from the colour of the pixels around it. This could be by:
  • [x] Nearest neighbour (match the colour of the nearest pixel).
  • [x] N-nearest neighbour (average the colours of the nearest N pixels).

Future

In the future the following are necessary steps to incorporate this into a real system.

  • [ ] Incorporate and extract the real pixels from a video feed.
  • [ ] Incorporate a real LED strip and allow for adjustment of the locations to align the test with the real screen.
  • [ ] Incorporate this into an embedded device such as a Raspberry PI to allow this to happen in proximity to the screen (Likely performance considerations to do real-time).

In the future the following are attractive steps to make the real system more functional.

  • [ ] More sophisticated mechanisms for determining the light that an LED ought to emit (bright or dark, smooth large color differences between frames, etc.)

Examples

On an arbitrary screen made up of 900 pixels (30x30) with 100 LED's using the nearest neighbour to determine LED colour. 6045s3030r100n1N

On an arbitrary screen made up of 900 pixels (30x30) with 100 LED's using the average of the 50 nearest neighbours to determine LED colour. 6045s3030r100n50N

On an arbitrary screen made up of 900 pixels (30x30) with 1000 LED's using the average of the 50 nearest neighbours to determine LED colour. 6045s3030r1000n50N