# teslausb ## Meta This repo contains steps and scripts originally from [this thread on Reddit]( https://www.reddit.com/r/teslamotors/comments/9m9gyk/build_a_smart_usb_drive_for_your_tesla_dash_cam/) Many people in that thread suggested that the scripts be hosted on Github but the author didn't seem interested in making that happen. I've hosted the scripts here with his/her permission. The original post on Reddit assumed that the archive would be hosted on Windows and that the Pi would be set up using a Windows machine but this Git repo welcomes the contribution of instructions for other platforms. TODO/Asks * Script to make this easy to get going. Ideally supports multiple targets (see further TODO/Asks) * Copy to AWS S3 / Google Drive / Etc * Copy to SSH/SFTP ## Intro You can configure a Raspberry Pi Zero W so that your Tesla thinks it's a USB drive and will write dashcam footage to it. Since it's a computer, you can run scripts on the Pi to automatically copy the clips to an archive server when you get home. The Pi is going to continually: 1. Wait until it can connect to the archive server 1. Archive the clips 1. Wait until it can't connect to the archive server 1. GOTO 1. Disclaimer: It hasn't been confirmed that this solution will work with v9 of the Tesla software. It has been verified that when files are present in the TeslaCam directory they are archived to a server when the car gets back on the wireless network. ## Prerequisites ### Assumptions * You park in range of your wireless network. * Your wireless network is configured with WPA2 PSK access. * You'll be archiving your dashcam clips to a Windows machine, and the Windows machine has a stable IP address on your home network. * You'll be setting up the Raspberry Pi using a Windows machine. ### Hardware Required: * [Raspberry Pi Zero W](https://www.raspberrypi.org/products/raspberry-pi-zero-w/): [Adafruit](https://www.adafruit.com/product/3400) or [Amazon](https://www.amazon.com/Raspberry-Pi-Zero-Wireless-model/dp/B06XFZC3BX/) > Note: Of the many varieties of Raspberry Pi only the Raspberry Pi Zero and Raspberry Pi Zero W can be used as simulated USB drives. It may be possible to use a Pi Zero with a USB Wifi adapter to achieve the same result as the Pi Zero W, but this hasn't been confirmed. * A Micro SD card, at least 8 GB in size, and an adapter (if necessary) to connect the card to your computer. * A USB A/Micro B cable: [Adafruit](https://www.adafruit.com/product/898) or [Amazon](https://www.amazon.com/gp/product/B013G4EAEI/) Recommended: These will allow you to set up the Raspberry Pi without following the steps for a "headless" setup, which are a little more complicated. * Mini HDMI to HDMI cable [Adafruit](https://www.adafruit.com/product/2775) or [Amazon](https://www.amazon.com/AmazonBasics-High-Speed-Mini-HDMI-HDMI-Cable/dp/B014I8UEGY) * A USB keyboard. * A micro USB power cable. Optional: * USB A Add-on Board if you want to plug your Pi into your Tesla like a USB drive instead of using a cable. [Amazon](https://www.amazon.com/gp/product/B07BK2BR6C/) * A case. Don't want unprotected circuits hanging about! Official case at [Adafruit](https://www.adafruit.com/product/2885) or [Amazon](https://www.amazon.com/gp/product/B06Y593MHV). There are many others to choose from. Note that the official case won't work with the USB A Add on board. * USB Splitter if you don't want to lose a front USB port. [The Onvian Splitter](https://www.amazon.com/gp/product/B01KX4TKH6) has been reported working by multiple people on reddit. ### Software Download [Raspbian Stretch Lite](https://www.raspberrypi.org/downloads/raspbian/) * Note: Bittorrent is dramatically faster than direct download. * Note: Raspbian Stretch Lite was tested by the original poster on Reddit, other varieties may work, too. Download and install: * [Etcher](http://etcher.io) ## Create your archive ### Hosting on Windows Set up a share on a Windows machine to host the archive. These instructions assume that you created a share named "SailfishCam" on the server "Nautilus". It is recommended that you create a new user. Grant the user you'll be using read/write access to the share. These instructions will assume that the user you've created is named "sailfish" and that the password for this user is "pa$$w0rd". Get the IP address of the archive machine. You'll need this later, so write it down, somewhere. You can do this by opening a command prompt on the archive machine and typing ipconfig. Get the IP address from the line labeled "IPv4 Address". ### TODO Other hosting solutions ## Set up the Raspberry Pi There are four phases to setting up the Pi: 1. Get the OS onto the micro sd card. 1. Get a shell on the Pi. 1. Get the scripts onto the Pi. 1. Get the Pi set up for your Tesla. ### Get the OS onto the micro SD card [These instructions](https://www.raspberrypi.org/documentation/installation/installing-images/README.md) tell you how to get Raspbian onto your MicroSD card. Basically: 1. Connect your SD card to your computer. 2. Use Etcher to write the zip file you downloaded to the SD card. Etcher works well and is multi-platform. > Note: you don't need to uncompress the zip file you downloaded. 3. Plug the micro sd card into the Pi. ### Get a shell on the Pi If you have a monitor with an hdmi input, a mini hdmi to hdmi cable, a usb keyboard and a micro usb power cable you can hook up the devices to the Pi and configure it directly. Plug it in and turn it on. When you're prompted for the password for the user "pi" use "raspberry" without the quotes. Now skip to section below titled "Get the scripts onto the Pi". If you don't have a keyboard/HDMI setup to boot the Pi and edit/transfer files directly, you'll probably want to connect to it over USB. If you're using Windows, follow [these instructions](GetShellWithoutMonitorOnWindows.md), then skip down to the section titled "Get the scripts onto the Pi". If you're using Linux or a Mac, follow [these instructions](GetShellWitoutMonitorOnLinux.md), then proceed to the next section. ### Get the scripts onto the Pi Now that you have a shell on the Pi you can turn the Pi into a smart USB drive. 1. Enter the following command. ``` sudo -i sudo nano /etc/wpa_supplicant/wpa_supplicant.conf ``` 1. Add this block to the bottom of the file specifying the actual SSID of your network and your actual PSK, keeping the quotes around both values. ``` network={ ssid="NETWORK" psk="PASSWORD" } ``` 1. Configure the wifi to ensure that your Pi has access to your network. Note that this command differs from what's described in the video for how to set up the pi without a monitor using Windows. ``` wpa_cli -i wlan0 reconfigure ``` 1. Run this command ``` ifconfig wlan0 ``` 1. Verify that there's an IP address on your subnet assigned. 1. Run these commands, subsituting your values: ``` export archiveserver=Nautilus export sharename=SailfishCam export shareuser=sailfish export sharepassword=pa$$w0rd ``` 1. Run these commands: ``` wget https://raw.githubusercontent.com/cimryan/teslausb/master/windows_archive/setup-teslausb chmod +x setup-teslausb ./setup-teslausb ``` 1. Run this command: ``` reboot ``` ### Get the Pi set up for your Tesla. If you set up the Pi with a keyboard and a monitor disconnect it and connect it to a PC. If you're using a cable be sure to use the port labeled "usb" on the circuitboard. 1. Wait for the Pi to show up on the PC as a USB drive. 1. Create a directory named TeslaCam at the root of the drive. 1. Eject the drive. 1. Plug the Drive into your Tesla.