• New Ceiling

    I am now making a new project with Braiden McClain to program a smart doorbell and not much has been done so far as I am struggling greatly with commands on the Le Potato terminal and don’t know where to start.

  • The Original Rises again

    The original “Child,” which was the Arduino Uno I used MUCH earlier has been brought back up for a new project. I know it’s unprofessional to just DUMP my code, BUT this is being done on a separate device, so I have to type it WORD FOR WORD. if you know “import” in Python, then…

  • More Roulette

    The first additions I added was an “if-elif” to check what kind of bet the player you want to make. If they pick a singular, then they pick ONE spot on the table to bet on and if they pick a group, they will select from a preset group selection. If they type an invalid…

  • Gambling (cont.)

    I have returned to working on the roulette program and, albeit not a lot was done, progress has been made: To start, “betType” is the focus, getting an input of either a grouped bet or, otherwise, a singular bet The if…else Just changes the input to either “group” or “single” for the bet type What…

  • Oops!

    Due to Mr. Wilmoth relocating my files on my computer, I was unable to find them to continue my work; No notable work for today.

  • Nothing for today

    Unfortunate, I lied, but with the little amount of code I added, it’d wouldn’t need much explanation.

  • Gambling (back at it)

    I’m currently trying (again) to make a game of roulette. These lines are the basic imports to get started, but the random module is the most important as it completely determines the pseudo-randomness. This massive chunk of code is simply a list of the possible things to bet on the table that you could get…

  • Rock Paper Scissors! (Huh)

    I made rock/paper/scissors in short time Code: #imports import time, random, sys, getpass #variables pause = 1 player_1 = “” player_2 = “” #define what’s done when the player wins def win(player_w, player_l):     print(f”Player {player_w} defeats {player_l}!”)     while True:         choice = str(input(“Do you want to play again?\n>\t”))…

  • It’s Almost Finished

    The Pi Pico (Child) is almost finished and can now connect to the internet and communicate with the LePotato (Big Boi) The Newest code is not cooperating

  • The Great Fuckup Fix

    The Child’s (Raspberry Pi Pico W) code has been recovered (thanks to me making a backup) and now there’s additional code that lets it connect to the internet, currently a router that has no access to the internet. Currently, I am working with a Potato, dubbed Big Boi, to host a server that the Child…