Posts

October 15th - Bose Wireless Conversion Part 2

 Just an update on this project. All the electronics have been finished. Definitely, the hardest part of this project has been cutting up and resoldering the audio cable for the headphone.  There is simply no short audio wires, and that completely defeats the purpose of a wireless headset, so I had to figure out another way. One thing to note, some cables do not color-code each individual wire, so it becomes almost impossible to rematch them to solder once you cut the cable. Anyway, I did some research, bought this cable , and reworked it. The next update will be the finished, 3D printed enclosure, and a sweet wireless adapter. Youtube link

October 7th - A Wireless Conversion

https://www.amazon.com/gp/product/B07QWT1CZV/ref=ppx_yo_dt_b_asin_title_o06_s00?ie=UTF8&psc=1 Virtually no latency, a great alternative to other $50+ converters. Works well with Bose QC 15. I just picked up a 2.5mm to 3.5mm adapter, and everything works great. As long as you're fine with a little Chinese voice telling you that it has powered up, I think that this would work very well. The case is made out of a injection molded plastic, so it might seem a bit cheap, but that is find for my purpose. I'm planning to do a few mods to tailor this piece to my Bose, will post with updates.

September 16th - SSAT Test Day

 SSAT The standard entrance exam for elite private high schools across the country, and today, I'm taking it. Just a short video following my experience for the day. Hope you guys enjoy it. Will update with scores ASAP (whenever they decide they want to release them). Youtube Link

August 20th - Sound Sensor Unit Part 2

Image
 Relays, Relays, Relays! Other than that not much. Did some light soldering work, changed the board from a uno to a nano, and added the relay. Just routing the power out via a female plug connector I "borrowed" from an extension cord. So now my uncle can utilize anything that can be connected to a standard AC wall outlet. Plus, the relay is rated for 40 Amps, so there isn't much that can't be powered I just am going to make a few functionality changes, so that if the sound ever goes over a certain point you would have to press a button to deactivate whatever device that has been connected. Not that hard, I can already imagine the code. Anyway speaking of the code, here's the script for this project. I didn't have time to draw a schematic, but I think it is very self explanatory. int soundSensor = 2; int relayPin = 3; void setup() {   pinMode(soundSensor, INPUT);   Serial.begin(9600);   pinMode(relayPin, OUTPUT); } void loop() {   int SensorData = digitalRead(s...

August 16th - Sound Sensor Unit Part 1

Image
 So, after seeing my video of the integration of a thermal sensor for an incubator that I am building ( link ), my uncle asked if I would be able to make a device that could trigger a strobe light based on the increase of sound over a certain threshold. Bleh, rephrased: He wants a light to turn on if things get too loud. Much better. So, I did a bit of googling, ordered a sound sensor off of Amazon, and created the circuit below. It just uses a 1k ohm resistor, an led, and the sound sensor ( amazon link ). After writing a bit of code, we are done, and  I have a sound sensor that can trigger an led. int soundSensor = 7; int LED = 8; boolean LEDStatus = false; void setup() {   pinMode(soundSensor, INPUT);   pinMode(LED, OUTPUT); } void loop() {   int SensorData = digitalRead(soundSensor);   if (SensorData == 1) {     if (LEDStatus == false) {       LEDStatus = true;       digitalWrite(LED, HIGH);     }   ...

August 8th - My Custom Built PC

Image
 So I am building a PC. This specific idea popped into my head sometime last year. I finally got around to doing it after spotting a good deal on eBay for a CPU and motherboard combo (Ryzen 9 3950x and Aorus Master x570 Board). I've slowly put together the components and finally started assembling this build around a matte black, chrome, and modern white color palette. I'll probably post again after this is all finished, with a nice video detailing my work, but until then, here are a few images of it in its current state.

May 25th - The Frog

Image
It is a hot Monday, a boiling start to my summer break. We are fresh off of a double sleepover with some of my close friends, and are full swing in packing our house. We move next Sunday. Anyway, my younger brother and I needed a break, so we headed outside. After realizing just how sweltering it was, we decided to wash the car, and maybe get wet in the process. We were just turning on the hose, when a flash of green stamped my eye. A second look and it was a frog! Naturally, we asked our parents if we could keep it, and naturally they said no. We didn't just want the frog to dry up under the baking sun, so we filled a box with water and gave him a cool place to stay while we decided what to do. We ended up thinking of the local pond that was located at the front of our neighbor hood. We went for a quick walk, I jumped the fence, and we released our new friend, christened "Froggy" by my little brother. Video of me releasing Froggy