izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Car Dash Replacement Project

Fri Apr 22, 2016 11:00 am

Hello all!

I am working on a Car Dash Replacement project for an 84 Camaro Z28. I'll try and update as I go through and get stuff completed with the steps that I took to get it done...

Goals for the Project:
Create a Complete Dash Replacement that can do the following:
  • Multiple Displays with the ability to Dim back-lighting
  • GPS Navigation
  • GPS Speedometer
  • Tachometer
  • Accelerometer to measure G-Force
    Multiple Temperature Sensors
  • Lambda Sensor
  • Backup Camera

Hardware for Project:
This is a list of the components that I have thus far to start the project:
  • 2x Raspberry Pi 3B + NOOBS MicroSD Cards
  • Microstack Accelerometer unit (3 axis accelerometer)
  • Microstack GPS
  • Microstack Baseboard
  • 2x 1024x600 touch Screen LCD Displays
  • Raspberry Pi Camera Module
  • Pi Camera Extension adapter for HDMI (up to 15ft.)
  • Pi-EZ Connect Terminal Block Breakout Hat
  • Right Angle Female Header
Software Attempting to use for project:
  • Raspbian 4.1 (Jessie)(Wheezy)
  • Or
  • Windows 10 IoT Core
Last edited by izzycm on Sun Apr 24, 2016 5:33 pm, edited 1 time in total.

izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Re: Car Dash Replacement Project

Fri Apr 22, 2016 11:00 am

I Swapped one of the Raspberry Pi 3's for a Pi 2 because I was having issues getting the GPS to work properly...

I have installed the following:
Installed Raspbian (Jessie)
TightVNCServer

Code: Select all

sudo apt-get install tightvncserver
and added it to auto start with the Pi

Code: Select all

sudo nano /etc/rc.local
and added these lines to the bottom of the file

Code: Select all

# Start tightvncserver
su - pi -c '/usr/bin/tightvncserver :1`
Set Static IP address

Code: Select all

sudo nano /etc/dhcpcd.conf
and added the following lines (Replace ## with the correct IP Schema you use)

Code: Select all

static ip_address=192.168.##.##
static routers=192.168.##.##
static domain_name_servers=192.168.##.##
Update the system

Code: Select all

sudo apt-get update
sudo apt-get upgrade
Prep system for GPS and Accelerometer

Code: Select all

sudo raspi-config
Under Advanced Options > A6-SPI and A7-I2C Enable and set to load by default. A8-Serial, Disable. Reboot Pi
Last edited by izzycm on Sat Apr 23, 2016 6:48 pm, edited 4 times in total.

izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Re: Car Dash Replacement Project

Fri Apr 22, 2016 11:00 am

Installing GPS and Accelerometer
Last edited by izzycm on Sat Apr 23, 2016 6:50 pm, edited 1 time in total.

izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Re: Car Dash Replacement Project

Fri Apr 22, 2016 11:01 am

(Reserved for Updates)

CarnageTR
Posts: 21
Joined: Thu Sep 10, 2015 10:25 am

Re: Car Dash Replacement Project

Sat Apr 23, 2016 10:31 am

Why are u using 2 pies?

izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Re: Car Dash Replacement Project

Sat Apr 23, 2016 6:30 pm

With having the 2 displays I figured I would have 1 Pi drive each of the screens.

JoshMilner
Posts: 3
Joined: Thu Jun 16, 2016 5:39 pm

Re: Car Dash Replacement Project

Thu Jun 16, 2016 6:55 pm

I'd love to see it installed in the car!

Hagar
Posts: 22
Joined: Thu Feb 25, 2016 9:34 pm

Re: Car Dash Replacement Project

Mon Jun 20, 2016 9:45 am

Do you have your progress displayed on a website or blog? Love to see how its going

izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Re: Car Dash Replacement Project

Sat Aug 27, 2016 1:05 pm

Sorry for the delay in posting, it has been quite a hectic summer....

Anyways here are the updates!

I started with making the dash out of Foam Core board and 2 part epoxy.
https://pix.sfly.com/Vcb9vr

After I had that made I fit in the 2x 7" Touch screens and Tach.
https://pix.sfly.com/OT-emH

Then I had to adjust the orientation of the screens by 90 degrees to make everything look right.https://pix.sfly.com/dXnHrC

Then after fitting it into the car I realized... I forgot to add turn signal indicators.... :lol: so I added them. https://pix.sfly.com/Zpk21q

Now I'm working on hooking them up to a Car power supply from http://mausberry-circuits.myshopify.com ... y-switches so it will auto shutdown the Pi unit when I turn off the Ignition.

I also have ordered an Arduino Nano for interfacing to the Left Pi, so that it can read the analog readings from my Wide-band 02 sensor that ill be adding. I am also looking into having a Mass airflow sensor interface with it also...

I'll hopefully have these setup in the next few weeks... along with more pics :)

izzycm
Posts: 9
Joined: Wed Apr 13, 2016 10:02 am

Re: Car Dash Replacement Project

Thu Sep 01, 2016 11:38 am

I received my Arduino Nanos yesterday and was able to get them to talk to the pi via USB cable...

Code: Select all

sudo apt-get install arduino

More info to come

Return to “Other projects”