A repo for the electrical subteam
  • Assembly 34.1%
  • CMake 31.6%
  • C 23.2%
  • C++ 5.4%
  • JavaScript 5.2%
  • Other 0.4%
Find a file
2026-04-15 02:28:35 -06:00
.vscode Added the JSON Payload files, need to verify them still. Change the http_post_json_example_main.c file, and renamed the original to .old before I figure out if the new file will work. 2026-03-20 19:34:21 -06:00
accel added Accel_wifi.ino as a demo for transmitting accelerometer values over Wifi 2025-10-04 13:54:14 -06:00
BAJA Merge pull request #11 from meyerAurelius/main 2026-04-15 02:25:40 -06:00
dashboard data to sd 2024-11-30 14:58:41 -07:00
gps modified: gps/gps_module/build/.bin_timestamp 2026-04-04 15:16:26 -06:00
remote_dash modified: gps/gps_module/build/.bin_timestamp 2026-04-04 15:16:26 -06:00
three.js@cd704f2298 working gps post code 2026-03-21 13:27:06 -06:00
.gitmodules submodule 2026-03-14 13:14:34 -06:00
README.md Update repository URLs in README.md 2025-10-29 19:18:18 -06:00

UCBajaElectrical

A repo for the electrical subteam 2024-2025

How to use this repo:

Installation: Debian/Ubuntu

  1. Create a Github account
  2. sudo apt update && sudo apt install git ssh (ensures git and ssh are installed)
  3. ssh-keygen -t ed25519 -C "your_email@example.com" (replace with your credentials used to create github account)
  4. cat .ssh/id_ed25519.pub (copy this output)
  5. Paste the output in step 4 into the "Key" section of this form: https://github.com/settings/ssh/new
  6. Click "Add SSH Key" (fill in the title with bajaSshKey), this should succeed without errors
  7. ssh-add .ssh/id_ed25519 (makes the key you generated in step 3 availible to ssh)
  8. Check the connection to github with ssh -T git@github.com (you should see your username in the output)
  9. Change to a directory where you want the baja code stored
  10. git clone https://github.com/meyerAurelius/UCBajaElectrical.git (clones the repo)
  11. git remote set-url origin git@github.com:meyerAurelius/UCBajaElectrical.git (sets to origin to our repo for when code is pushed).
  12. Enjoy!

Installation: Windows

  1. Download and install the 64 bit standalone version of git bash (https://git-scm.com/downloads/win)
  2. Open git bash cli
  3. ssh-keygen -t ed25519 -C "your_email@example.com"
  4. cat .ssh/id_ed25519.pub
  5. Paste the output in step 4 into the "Key" section of this form: https://github.com/settings/ssh/new
  6. Click "Add SSH Key" (fill in the title with bajaSshKey), this should succeed without errors
  7. Type in git bash cli: eval "$(ssh-agent -s)" (ensures ssh-add is running)
  8. ssh-add .ssh/id_ed25519 (should return without errors)
  9. Check the connection to github with ssh -T git@github.com (you should see your username in the output)
  10. Change to a directory where you want the baja code stored
  11. git clone https://github.com/meyerAurelius/UCBajaElectrical.git (clones the repo)
  12. git remote set-url origin git@github.com:meyerAurelius/UCBajaElectrical.git (sets to origin to our repo for when code is pushed).
  13. Start working on your code!

How to sync local code with code on github:

1.git pull

How to upload your work to git:

  1. Navigate to directory containing repo.
  2. git add -A (adds all files to commit). If you only want to add certain files to your commit, run git add filename instead
  3. git commit -am "Label your commit withing these quotes" (creates a commit)
  4. git push (pushes your commit to github)