Opel TID Display

AJB2K3:
Were working on the Astra G/corsa C/ Vectra C version.

I'm very thankful for the lib creators - top work!
I've made a modification for my Astra F with the 10 character display - some differences/error in the original for this.
src:Eelke Visser.nl - The 10 character Protocol

void TID::cycle(){
	start_tid();
	tid_address();
	tid_data(_SYMBOLS1);
	tid_data(_SYMBOLS2);
	tid_data(_SYMBOLS2);// needs three sets of symbols for the 10 digit display
	for (int i=0; i<10;i++){ // <<<<<<<needs to cycle up to 10!!!
		tid_data(_display[i]);
	};
	stop_tid();
}

(plus some other variables i've exttended)
and there was an error in the code, it said 0x9A where 0x9B is needed

 tid_byte(0x9B);		//the address for the 8 char display is embedded here, for the 10 char you have to use 0x9A <<wrong

Next up, SD interface for in-car MP3 player!

Daniel Crane

TID.zip (3.34 KB)