Articles

Most of the cool stuff I've Done

So in no particular order, here are some of the things that I’ve done that I think are worth mentioning. Ran a First Robotics Team and got to the World Championships One of my most proud accomplishments is getting to the world championships, and I can’t thank the wonderful mentors that joined me enough! Every success and failure was shared and being here at this time and place has truly been a blessing.

Landing Prediction App

This app is designed to solve a particular problem I have discovered in my amateur rocketry setup: The code I use to decode telemetry from my rocket data only runs on a laptop, as its writtin in MATLAB. While I’m out in the desert I want to be carrying as little weight as possible, a 200g phone is much easier than a multiple kg laptop. This code also benefits from sensors in the phone, namely positioning and altitude.

First Robotics 2023

For the last two years, I have been a mentor for First Robotics Team 5901. This year, we advanced far enough to get to the Michigan State Championship as well as the World Championship in Houston, TX. We had a hectic time organizing it last minute but I wouldn’t trade that time for anything. My team performed at their peak, placing well above expectations and predictions. Watching my students put all of their mechanical work, practice, and skill into every match was great to see.

Looking Glass Tips

Looking glass can be really difficult to setup correctly, so heres some tips IVSHEM Device Make sure to disable secure boot in the VM’s BIOS/UEFI. You can enter the bios by using Windows 10’s secure boot options entry in the start menu, then navigating thru that until you find the UEFI settings Scream This one should work out of the box, once you figure out where to download it and how to install it.

Kicad PCB Design

My Apartment does not have in-unit laundry. So, when the laundry is done, I do not hear the laundry machine stop, and would often set timers to avoid my clothes becoming wrinkly. This doesn’t solve my issue though, sometimes the laundry machine takes less time than you expect due to the automatic cycle, which I prefer to use. This PCB is intended to fix that. it consists of: An ESP8266 NodeMCU An MPU6050 Accelerometer connected via SPI This circuit board A strong magnet so I can easily attach and detach my gadget Two AA batteries, for cost effectiveness.

Ham Radio

I found this nifty little code that shows you current local space weather.

High Power Rocketry

Back in college one of my extracurriculars was rocketry. You’d buy a kit, put it all together, drive out to the desert, launch it, and finally: recover it. For me, that last part was the toughest. Here’s an image of the area that I launched rockets in: The geography was very homogenous, landmarks spaced far apart, easy to get lost in. My rocket didn’t have any tracking equipment besides the two eyes in my head and that wasn’t enough.

Drone Mapping Project

This RC plane is designed to fly over an area with a gopro or similar camera and map areas. Its part of my strategy to not lose rockets I have launched in the desert. It will have a wingspan of about 4 ft 11 in. I’m trying to make as much of it 3d printed as possible, so that I can have fun designing it as a side project, and so that I can share it with the world when its done.

Website creation

I created this website to hold onto important things I’ve found on the internet, and to more generally carve out my own little spot. I hope you like it! On the bottom left are contact pages so you can get a hold of me if need be. This website uses Hugo to generate the HTML because I dont want to do it myself, and it uses a theme called “Digital Garden” to make it look nice, expecially for phones.

Ghost Image Display

This display uses a string of LEDs (WS2812b, if you want to buy some on amazon), connected to an arduino and SD card. The arduino reads images from the SD card, and displays them one column at a time to make this ghostly display. Any image sized corectly will do! Here is a couple more pictures of this display! and here is another one, with (in)famous frog, Pepe.

Inav Telemetry Fix

I’ve Been running Matek boards on my quadcopter for quite some time due to their nice build quality and associated PDB. However I was never able to get their telemetry working via softserial. I recently got the Matek F411 Wing board for a drone project and attempted to get this fixed. After hours and hours of banging my head against the wall and trying to get my boards to output that sweet sweet data, I found the one thing I needed to do all along: Screw around with half duplex.

using new disks for LVM tutorial

use lsblk to identify disks to use. on a blank disk, use sudo pvcreate /dev/<diskdevicename> If you get this error: Cannot use /dev/<diskdevicename>: device is partitioned Use this line to completeley wipe the disk: sudo wipefs --all --backup /dev/<diskdevicename> use sudo pvs to see your volume groups and disks associated with them. use sudo vgextend /dev/<volumegroupname>/<logicalvolumename> /dev/<diskdevicename> to add your new disk to your existing volume group. I ticked the box during OS installation to use LVM, so I already have a volume group.

High Power Rocketry

March 31, 2022

Back in college one of my extracurriculars was rocketry. You’d buy a kit, put it all together, drive out to the desert, launch it, and finally: recover it. For me, that last part was the toughest. Here’s an image of the area that I launched rockets in:

OROC Launch Site

The geography was very homogenous, landmarks spaced far apart, easy to get lost in. My rocket didn’t have any tracking equipment besides the two eyes in my head and that wasn’t enough. I spent several hours out in this desert looking for my rocket and I could not find it. Next time will be different, I will make sure of that.

The Solution

Arduino powered Avionics!

Kit Rocket AV Bay

It consists of:

  • Stratologger for altitude measurement
  • GPS for positional measurement
  • Arduino for converting that GPS dat
  • an HC12 for transmitting to the ground
  • a 2 cell Li-ion battery pack

I don’t really have a plan as to when it will get launched.

Now I need to do the following before I launch it:

  • Spotweld the 2s Lithium-ion battery together
  • Create a new bracket to hold the battery in the telemetry bay
  • Add a screw switch for safety purposes (might have to make these myself)
  • Possibly re orient the Telemetry antenna (the spring in the top photo)
  • swap out the plastic M2 spacers for brass (better strength)
  • hot glue the electronics together as a sort of poor man’s potting
  • Figure out how to use the stratologger to deploy parachutes
  • make deployment charges for the stratologger to trigger
  • attach ferrules to all wires going into the stratologger’s screw terminals
  • attach launch lugs / tube
  • sand down the leading and trailing edges of the fins
  • paint the rocket and add decals

Once I arrive at the launch site I’ll need to do the following

  • Charge the Battery up
  • Fold and pack the chute(s)
  • Load the “dog barf” shredded insulation
  • load the powder charges and more dog barf
  • activate the stratologger, confirm the deployment at peak altitude settings
  • make sure telemetry is functioning
  • launch

The arduino is running this code: