Self Taught Stuff
Self Taught Stuff
  • 24
  • 10 162
Hacking 3D Pinball Space Cadet High Scores
This video is about how the high scores of 3D Pinball Space Cadet work, how they are protected and how to modify them.
Don't judge me, it was long time ago and it was just for fun.
I know noone plays this game anymore, I just want to document my findings.
You can get the javascript code here: github.com/SelfTaughtStuff/3d_pinball_space_cadet_verification_calculator
zhlédnutí: 10

Video

ATtiny85 driving SG90 servo
zhlédnutí 382Před měsícem
This is a detailed explanation how to drive SG90 servo from a standalone ATtiny85 Code: github.com/SelfTaughtStuff/ATtiny85_driving_SG90_servo PB3 (pin #2) discussion: arduino.stackexchange.com/questions/82159/attiny85-wont-boot-if-pin2-is-not-pulled-high My previous video: czcams.com/video/-K4P_WivnzE/video.html
3D Printed Fume Extractor
zhlédnutí 387Před měsícem
Simple and cheap Fume Extractor. You can download the STL files here: www.printables.com/model/856765-fume-extractor AlphaPhoneix video: czcams.com/video/exRgzJaB3D4/video.html
DIY 3D Printed Rotating Display Stand
zhlédnutí 201Před 2 měsíci
I needed a rotating display stand to show off my projects, so I made one. In one of my next videos I update it to be controllable by PC, this will allow me to do awesome things with it. Code: github.com/SelfTaughtStuff/diy_3d_printed_rotating_display_stand Rotary encoder EC11: www.aliexpress.com/item/1005001423863921.html LM2596 step down power supply: www.aliexpress.com/item/1005003032264323.h...
3D printed WiFi controlled RGB table lamp
zhlédnutí 184Před 4 měsíci
I made this RGB table lamp to learn and test controlling devices thru WiFi. It was a fun project and I learned allot of new things. In my next WiFi enabled project I will try to make universal Android app that I will be able to use for all my WiFi devices. Make sure to subscribe to follow my progress. Total cost of the project (not including the 3D printing materials and electricity) ~ $12USD C...
Making custom fridge magnet for UnlimitedCoders
zhlédnutí 119Před 7 měsíci
You can get the model here: www.printables.com/model/627157-unlimitedcoders-fridge-magnet Official website of UnlimitedCoders: unlimitedcoders.com
Preparing Blank ATtiny85 for programming
zhlédnutí 1,8KPřed rokem
I am making an addon device for my DJI Mavic Air2 drone, so I have to prepare blank ATtiny85 microcontroller for programming which will be used in the next project. In this video, I will show you step-by-step procedure on how to burn Micronucleus bootloader on a blank ATtiny85 chip using Arduino Uno as an ISP and make it programmable thru USB using the HW-260 ATtiny85 development board. This is...
How to make USB foot switch for PC (push to talk / macro)
zhlédnutí 1,2KPřed rokem
I made a foot switch to use it as a push to talk button for Discord. Total cost (at the time) was $14.085USD With a bit of research and learning, you can make complex macros and keybinds using this device. Code: github.com/SelfTaughtStuff/pc_foot_switch Key modifiers list: www.arduino.cc/reference/en/language/functions/usb/keyboard/keyboardmodifiers ASCII table: www.asciitable.com Keyboard libr...
Mini MicroSD Card Case v2 SLA suitable
zhlédnutí 225Před 2 lety
Mini MicroSD Card Case v2 SLA suitable
3D Printed Coin Roll Crimper for MKD (Macedonian Denars)
zhlédnutí 1,4KPřed 3 lety
3D Printed Coin Roll Crimper for MKD (Macedonian Denars)
DIY 3D printed speakers (Ultimate camping power bank part1)
zhlédnutí 325Před 3 lety
DIY 3D printed speakers (Ultimate camping power bank part1)
Mini Gold Pan
zhlédnutí 880Před 4 lety
Mini Gold Pan
Sunrise Timelapse
zhlédnutí 74Před 8 lety
Sunrise Timelapse

Komentáře

  • @kreeperstone
    @kreeperstone Před 26 dny

    Nice video

  • @giulianorebuli
    @giulianorebuli Před měsícem

    Hi, thanks for the video. Can you help me? I did everything as you said, had even to install your exact version of the Arduino IDE to work the bootloader flashing, but when i tried to flash the application, when asked to insert the device, i get an error from Windows, saying that my USB device was not recognized. I suspected it was because the driver wasn't installed as should, but as i tried to reinstall, nothing new happened. Any ideas on how i can get it working?

    • @self_taught_stuff
      @self_taught_stuff Před měsícem

      thank you for watching. its probably a driver conflict, happened to me before. do you use the HW-260 development board? did you check whats going on in the Device Manager when you plugin the device in the USB? maybe try connecting on different USB port if available. are you sure that uploading of the micronucleus bootloader finished successfully?

    • @giulianorebuli
      @giulianorebuli Před měsícem

      @@self_taught_stuff yes I am using HW-260, but haven't checked what happened with the device manager. I did manage to program the attiny straight from the arduino, though, but I really expected to use the hw260 as it's easier and cleaner. Thanks for the reply

    • @self_taught_stuff
      @self_taught_stuff Před měsícem

      @@giulianorebuli open the device manager (Windows+X keys and select Device Manager from the menu), watch what happens when you plugin the board to the USB. try to change the USB port. I remember once I had similar problem and turned out to be bad ATtiny85 (or probably I bricked it with bad custom settings of the bootloader), if you have spare ATtiny85 try changing it with new one and see what will happen.

    • @self_taught_stuff
      @self_taught_stuff Před měsícem

      @@giulianorebuli i did some testing and here is what i found out that might help you. first of all I have to note that ATtiny85 doesnt have USB interface, the micronucleus bootloader is simulating the USB interface on pins 2 and 3 (PB3 and PB4). the micronucleus bootloader shares the same space with the program code. if you dont install the Digistump drivers on the PC but you have the micronucleus uploaded to the ATtiny85, when you connect the HW-260 board to that PC you will get an unknown device in the Device Manager but you wont get any error. if you install the Digistump drivers on the PC but you dont have the micronucleus bootloader uploaded to the ATtiny85 you will get an error from Windows telling you that the device is not recognized. if you check the schematic of the HW-260 development board, you can see that pin 2 and pin 3 are connected to the D+ and D- of the USB connector thru zener diodes, so if your code uses the pins 2 or 3 (PB3 or PB4) for some functionality (especially as output) in some cases the USB connection of your HW-260 board will be broken and you will get Windows error message that the device is not recognized when you connect the HW-260 to your PC. so all in all, you will get that Windows error of device not recognized if your ATtiny85 is bricked or is faulty, or if the micronucleus bootloader was not uploaded properly, or if you are using the pins 2 or 3 (PB3 or PB4) for some functionality. if everything is installed and its ok, then when you plug the HW-260 to your PC, in the Device Manager you will see a new item in the devices list named as "libusb-win32 devices" for 5-6 seconds and then it should disappear. please let me know if you have any other info about the issue or if you manage to solve it.

  • @tongs4706
    @tongs4706 Před měsícem

    thats awesome, i cant believe more people havent already caught on to your stuff

    • @self_taught_stuff
      @self_taught_stuff Před měsícem

      thank you, I am glad you like my videos. for now I am making videos from old projects, that's why I am not promoting my channel yet.

  • @thatBMWill
    @thatBMWill Před 2 měsíci

    Hey. I would love to get the files so I can modify for US coins. This system is exactly what I was looking for!

    • @self_taught_stuff
      @self_taught_stuff Před 2 měsíci

      Sure, I will push the files to github once I get back home and I will send you a link to download them from there.

    • @thatBMWill
      @thatBMWill Před 2 měsíci

      @@self_taught_stuff awesome, thank you so much!

    • @self_taught_stuff
      @self_taught_stuff Před 2 měsíci

      @@thatBMWill here is a link to the github repository github.com/SelfTaughtStuff/coin_roll_crimper_mkd those files are made with SolidWorks 2017, atm I am using version 2018 and they open correctly. one change that I would suggest is to add marking on the bottom of the roll "molds" so that you can know which "mold" is for what coin and you can also do that to the crimpers too. if you manage to make the changes and if you want to share the STL files with others, please write a comment and I will pin that comment to the top so that others can download them.

  • @notsrynot
    @notsrynot Před 4 měsíci

    Would it work the same for mac

    • @self_taught_stuff
      @self_taught_stuff Před 4 měsíci

      yes it should work, sorry I dont have mac to test it out to be sure. it simulates keyboard so it should work on all other devices that you can connect a keyboard thru USB

  • @troyriveron5706
    @troyriveron5706 Před 6 měsíci

    How long did that takes

    • @self_taught_stuff
      @self_taught_stuff Před 6 měsíci

      all in all, around 35.5 hours to print the whole lamp body, one whole day to make, debug, refine and test the code, soldering and making the electronics took me just few hours.

  • @blynkhdi
    @blynkhdi Před 7 měsíci

    diagram n code ...?

    • @self_taught_stuff
      @self_taught_stuff Před 7 měsíci

      this will be part of a bigger project. I will publish the video once I get some time to finish it, please be patient, I will provide all the information in that video.

    • @self_taught_stuff
      @self_taught_stuff Před měsícem

      i finally made a video, here it is if you want to watch it czcams.com/video/NwYqH8OTpto/video.html

  • @soumilgupta3441
    @soumilgupta3441 Před 11 měsíci

    How can I do this on Linux

    • @self_taught_stuff
      @self_taught_stuff Před 11 měsíci

      Thanks for your question. I am using Linux (Ubuntu) as my main OS too, I am planning to redo the same video for Linux soon.

  • @TheOfficialJoel
    @TheOfficialJoel Před rokem

    well its not exactly perfect but i do like the idea

  • @graceleah3216
    @graceleah3216 Před 2 lety

    Would that work for American coins such as dollars and half dollars ?

    • @self_taught_stuff
      @self_taught_stuff Před 2 lety

      it should work for any coin, but you will have to resize the parts to fit the coin dimensions. if you want I can send you the SolidWorks files which you can edit and change dimensions.

    • @thatBMWill
      @thatBMWill Před 2 měsíci

      @@self_taught_stuff Hi, I would like these files so I can modify for US coins! I will remix and give credit on Thingiverse!

  • @mihaiemilian5330
    @mihaiemilian5330 Před 3 lety

    Very cool project

  • @user-is6rq4px2t
    @user-is6rq4px2t Před 3 lety

    Hello, price ?

    • @cringy_undertale_gamer6227
      @cringy_undertale_gamer6227 Před 3 lety

      It's free on Thingiverse if you have a 3D printer

    • @self_taught_stuff
      @self_taught_stuff Před 3 lety

      I am sorry, I don't sell this crimper, but if you want you can follow the link in the description, download the files and you can find someone to print it for you. Have in mind that the sizes of the crimpers are made for Macedonian Denar coins and might not fit other currencies.

    • @marcosvalentin1378
      @marcosvalentin1378 Před 2 lety

      You have this for US coins?

    • @self_taught_stuff
      @self_taught_stuff Před 2 lety

      @@marcosvalentin1378 no sorry. but if you want I can send you the SolidWorks files so you can modify the design to suit US coins size.

  • @TheAntonioMK
    @TheAntonioMK Před 8 lety

    Убава е МАКЕДОНИЈА многу убава снимка. АЛЕКСАНДАР МАКЕДОНСКИ!!!!