Welcome Anonymous !

Everything you need to modify your ride
 

Exterior Modifications

Factory Park Sensors / Park Assist Project

Specific exterior modification information for Holden Commodore VE and VEII Series Commodores, and HSV E1, E2, and E3 models

Postby ZerOne » Wed Jan 26, 2011 10:43 am

There are 3 different types of parking sensors for VE Commodore and derivitives.
These include,
1) The Factory Front and Rear Park Assist System, which has both Audio and Visual feedback via the colour entertainment screen.
2) The Factory Rear Parking Sensors, which have audio feedback only.
3) HSV and HSVi Dealer fit rear parking sensors, as can be found on eBay.

Options 2 and 3 have a seperate sounder unit (speaker) that beeps according to the parking sensor distance from an object.

The Factory front and rear park assist has an additional module for the front park sensors, as well as extra connectors for canbus, park assist ON/Off Button, and LED status.
This model places sensor data on the Canbus for the colour Entertainment screen to display the parking distance in real time, on a vehicle overlay.

This project will consist of the following parts.
1) obtaining the Canbus data for each sensor, including distance information.
2) Attempting to replicate this data on the Canbus using a PC to spoof park assist information on the screen
3) Building an Arduino hardware based park assist solution, that utilises aftermarket, or HSVi Dealer fit sensors for front and rear bumpers, to deliver the required Canbus information for the Colour Entertainment screen (Park assist)

If anyone is interested in this project, please let me know
User avatar
ZerOne
Site Admin
 
Posts: 1285
Images: 16800
Joined: Thu Aug 19, 2010 1:25 pm
Location: Sydney Australia
Has thanked: 14 times
Been thanked: 36 times

Postby ZerOne » Tue Nov 22, 2011 8:01 pm

Parts used for Parking Assist Option 3 (Dealer Fit and HSVi Options)

Park Assist Speaker (Mounted on the passenger side of the boot, near the parcel tray).
14603


Park Assist Module (Mounted on the Passenger side of the boot, between the battery and rear parcel tray).
14601


Park Assist VE Wiring Loom for Sensors
14600


Park Assist VE Wiring Loom for Reverse Lights, Trailer Plug and Power
14598


Park Assist Sensor (Crunch Colour Shown)
14602


Park Assist Kit, as sold by Holden Parts
14599
User avatar
ZerOne
Site Admin
 
Posts: 1285
Images: 16800
Joined: Thu Aug 19, 2010 1:25 pm
Location: Sydney Australia
Has thanked: 14 times
Been thanked: 36 times

Postby ZerOne » Wed Jun 06, 2012 11:15 am

I have obtained some factory templates for the VE SWB Sedan (Omega, SV6, SS and SS-V) Models.
These templates use the tail lights and the boot as reference points (So for Berlina and Calais Models with the larger tail lights, these templates may require a bit of fudging to use).

These templates have been scanned in from A3 Pages (So the templates are large in size, and should be printed on an A3 capable printer for use).
If you do not have access to an A3 printer, the local library, Office Works (In Australia) or even an Internet cafe may be able to provide this service.

The templates are pretty self explanatory, and are for the full four head factory system.

Park_Assist_1_VE_Sedan.pdf


Park_Assist_2_VE_Sedan.pdf


Park_Assist_3_VE_Sedan.pdf


Park_Assist_4_VE_Sedan.pdf
You do not have the required permissions to view the files attached to this post.
User avatar
ZerOne
Site Admin
 
Posts: 1285
Images: 16800
Joined: Thu Aug 19, 2010 1:25 pm
Location: Sydney Australia
Has thanked: 14 times
Been thanked: 36 times

Postby ZerOne » Wed Jun 06, 2012 11:26 am

This post contains some of the 29Bit Can Data information found for the Factory Fit (Calais V, Statesman, Caprice and HSV Senator models).

Presently, only the Park Assist beeps still need to be sniffed in order to parrot all the park assist functionality of the factory unit.
(This should be completed within the next week or so)

Park Assist Enabled / Disabled (Using the Gear Position)
Code: Select all
Disable Park Assist (Gear Position not in Drive or Reverse)
10 11 80 BB 0D
10 11 A0 BB 40

Enable Park Assist (Gear Position in Drive or Reverse)
10 11 80 BB 0C
10 11 A0 BB 20


Rear Left Hand Side Sensor, Moving towards an Object,
From no bars, to displaying the third orange bar.
(NOTE : These packets need to be sent from the Arduino / PC to display the park assist bar information)
Code: Select all
10 11 C0 BB 10 FF 00 00
10 11 E0 BB 10 FF 00 00
10 11 E0 BB 10 6F 04 00
10 11 C0 BB 00 FF 00 00
10 11 E0 BB 00 FF 00 00
10 11 C0 BB 10 FF 00 00
10 11 E0 BB 10 FF 00 00
10 11 E0 BB 10 6F 04 00
10 11 C0 BB 10 AF 06 00
10 11 C0 BB 10 8B 05 00
10 11 C0 BB 10 FF 00 00
10 11 E0 BB 10 7A 04 00
10 11 E0 BB 10 FF 00 00
10 11 C0 BB 10 5D 00 40
10 11 C0 BB 10 5B 00 40
10 11 C0 BB 10 58 00 30
10 11 C0 BB 10 55 00 30
10 11 C0 BB 10 53 00 30
10 11 C0 BB 10 50 00 30
10 11 C0 BB 10 4E 00 30
10 11 C0 BB 10 4C 00 30
10 11 C0 BB 10 49 00 30
10 11 C0 BB 10 47 00 30
10 11 C0 BB 10 45 00 30
10 11 C0 BB 10 43 00 30
10 11 C0 BB 10 40 00 30
10 11 C0 BB 10 3E 00 30
10 11 C0 BB 10 3C 00 20
10 11 C0 BB 10 39 00 20
10 11 C0 BB 10 37 00 20
10 11 C0 BB 10 35 00 20
10 11 C0 BB 10 33 00 20
10 11 C0 BB 10 31 00 20
10 11 C0 BB 10 2F 00 20
10 11 C0 BB 10 2D 00 20
10 11 C0 BB 10 2B 00 20
10 11 C0 BB 10 29 00 20
10 11 C0 BB 10 27 00 20
10 11 C0 BB 10 25 00 20
10 11 C0 BB 00 FF 00 00
10 11 E0 BB 00 FF 00 00


Rear Left Hand Side, 4th Red Bar displayed...
Code: Select all
10 11 C0 BB 10 FF 00 00
10 11 E0 BB 10 FF 00 00
10 11 C0 BB 10 1E 00 10
10 11 C0 BB 00 FF 00 00
10 11 E0 BB 00 FF 00 00


Rear Middle, 4th Red Bar displayed...
Code: Select all
10 11 C0 BB 10 FF 00 00
10 11 E0 BB 10 FF 00 00
10 11 C0 BB 10 1E 01 00
10 11 C0 BB 00 FF 00 00
10 11 E0 BB 00 FF 00 00


Rear Right Hand Side, 4th Red Bar Displayed...
Code: Select all
10 11 C0 BB 10 FF 00 00
10 11 E0 BB 10 FF 00 00
10 11 C0 BB 10 1E 10 00
10 11 C0 BB 00 FF 00 00
10 11 E0 BB 00 FF 00 00


Front Right Hand Side, 4th Red Bar Displayed...
Code: Select all
10 11 E0 BB 10 FF 00 00
10 11 E0 BB 10 1E 10 00
10 11 E0 BB 00 FF 00 00


Front Middle, 4th Red Bar Displayed...
Code: Select all
10 11 E0 BB 10 1E 10 00
10 11 E0 BB 10 1E 11 00
10 11 E0 BB 10 1E 01 00
10 11 E0 BB 00 FF 00 00


Front Left Hand Side, 4th Red Bar Displayed....
Code: Select all
10 11 E0 BB 10 FF 00 00
10 11 E0 BB 10 1E 00 10
10 11 E0 BB 00 FF 00 00


PLEASE NOTE : You will require the colour LCD head unit fitted in order for this information to be displayed.
User avatar
ZerOne
Site Admin
 
Posts: 1285
Images: 16800
Joined: Thu Aug 19, 2010 1:25 pm
Location: Sydney Australia
Has thanked: 14 times
Been thanked: 36 times

Postby NS10TS » Fri Oct 17, 2014 6:26 pm

Hi ZerOne

Im new to this forum and site.

I own a 2011 VE E3 Clubsport Wagon and whilst I have rear park assist which is audio and visual im enquiring how can I get front park assist to operate through the original unit of the car.

My brother has the HSV Senator signature sedan and he has the front and rear park assist with audio and visual.

Both our cars interior setup is exactly the same and I think he may have the colour touch IOS unit as mine does.

Now aside from obviously purchasing the front sensors what else do I need to purchase and where can I purchase these and most importantly is their anyone that sells or fits these upgrades???

Regards
Tass
NS10TS
Newbie Modder
 
Posts: 1
Joined: Fri Oct 17, 2014 6:08 pm
Has thanked: 0 time
Been thanked: 0 time


Return to Exterior Modifications

  • View new posts
  • View unanswered posts
  • Who is online
  • In total there are 6 users online :: 0 registered, 0 hidden and 6 guests (based on users active over the past 5 minutes)
  • Most users ever online was 405 on Sat Mar 30, 2024 1:42 am
  • Users browsing this forum: No registered users and 6 guests