Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

Audi Virtual Cluster Sport Layout Solution - FREE !
19-01-2023, 15:33 PM,
Post: #21
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
Tested and works, Thx
Quote this message in a reply
[+] 1 user says Thank You to n3oka for this post
19-01-2023, 15:44 PM,
Post: #22
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 15:33 PM)n3oka Wrote:  Tested and works, Thx

Which method did you use ?
And which car and year?
Quote this message in a reply
19-01-2023, 15:55 PM,
Post: #23
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 15:44 PM)rehatflogs Wrote:  
(19-01-2023, 15:33 PM)n3oka Wrote:  Tested and works, Thx

Which method did you use ?
And which car and year?

With ODIS-E 16
A3 8V 2017
Quote this message in a reply
[+] 2 users say Thank You to n3oka for this post
19-01-2023, 16:17 PM, (This post was last modified: 19-01-2023, 16:18 PM by 7491159.)
Post: #24
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 12:38 PM)wawan.ru Wrote:  VCP_Script data:


em : string ;
begin
    ConnectToEcuUDS('17');
    if IsConnectedToEcu then
    begin
         Writeln('Connected');
         Writeln(GetECUNo);
         //change diag session to developer
         ChangeDiagSessionRaw('4F');
         //Programming date F199
         WriteDataByIDRaw(61849,'201102');
         //Tester fingerprint F198
         WriteDataByIDRaw(61848,'0181C8F6002E');
         if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
         WriteMemoryByAddr($03003C09,'01',$14);
         readedmem := ReadMemoryByAddr($03003C09,1,$14);
         Writeln(readedmem);
         Writeln('EEPROM update success');
         ECUReset;
    end
    else
    begin
         Writeln('Cant connect to cluster!!');
    end;
    CloseCommunication;
end

Compiling
Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

Check Synlax ,(
Quote this message in a reply
19-01-2023, 16:42 PM,
Post: #25
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 16:17 PM)7491159 Wrote:  
(19-01-2023, 12:38 PM)wawan.ru Wrote:  VCP_Script data:


em : string ;
begin
    ConnectToEcuUDS('17');
    if IsConnectedToEcu then
    begin
         Writeln('Connected');
         Writeln(GetECUNo);
         //change diag session to developer
         ChangeDiagSessionRaw('4F');
         //Programming date F199
         WriteDataByIDRaw(61849,'201102');
         //Tester fingerprint F198
         WriteDataByIDRaw(61848,'0181C8F6002E');
         if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
         WriteMemoryByAddr($03003C09,'01',$14);
         readedmem := ReadMemoryByAddr($03003C09,1,$14);
         Writeln(readedmem);
         Writeln('EEPROM update success');
         ECUReset;
    end
    else
    begin
         Writeln('Cant connect to cluster!!');
    end;
    CloseCommunication;
end

Compiling
Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

Check Synlax ,(
Remove the spaces in this line and retry to compile in VCP:

readedmem := ReadMemoryByAddr($03003C09,1,$14);
Quote this message in a reply
19-01-2023, 16:52 PM, (This post was last modified: 19-01-2023, 17:09 PM by 7491159.)
Post: #26
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 16:42 PM)rehatflogs Wrote:  
(19-01-2023, 16:17 PM)7491159 Wrote:  
(19-01-2023, 12:38 PM)wawan.ru Wrote:  VCP_Script data:


em : string ;
begin
    ConnectToEcuUDS('17');
    if IsConnectedToEcu then
    begin
         Writeln('Connected');
         Writeln(GetECUNo);
         //change diag session to developer
         ChangeDiagSessionRaw('4F');
         //Programming date F199
         WriteDataByIDRaw(61849,'201102');
         //Tester fingerprint F198
         WriteDataByIDRaw(61848,'0181C8F6002E');
         if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
         WriteMemoryByAddr($03003C09,'01',$14);
         readedmem := ReadMemoryByAddr($03003C09,1,$14);
         Writeln(readedmem);
         Writeln('EEPROM update success');
         ECUReset;
    end
    else
    begin
         Writeln('Cant connect to cluster!!');
    end;
    CloseCommunication;
end

Compiling
Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

Check Synlax ,(
Remove the spaces in this line and retry to compile in VCP:

readedmem := ReadMemoryByAddr($03003C09,1,$14);

Code:
begin

    ConnectToEcuUDS('17');
    if IsConnectedToEcu then
    begin
         Writeln('Connected');
         Writeln(GetECUNo);
         //change diag session to developer
         ChangeDiagSessionRaw('4F');
         //Programming date F199
         WriteDataByIDRaw(61849,'201102');
         //Tester fingerprint F198
         WriteDataByIDRaw(61848,'0181C8F6002E');
         if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
         WriteMemoryByAddr($03003C09,'01',$14);
         readedmem:=ReadMemoryByAddr($03003C09,1,$14);
         Writeln(readedmem);
         Writeln('EEPROM update success');
         ECUReset;
    end
    else
    begin
         Writeln('Cant connect to cluster!!');
    end;
    CloseCommunication;
end.
Compiling

Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

ok
I figured out where the error is

need
var
readedmem : string ;

(on your post was " em : string ; ")

Thanks man ! Now all ok "Compiling
Compiled succesfully"
Quote this message in a reply
[+] 1 user says Thank You to 7491159 for this post
19-01-2023, 17:03 PM,
Post: #27
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 16:52 PM)7491159 Wrote:  
(19-01-2023, 16:42 PM)rehatflogs Wrote:  
(19-01-2023, 16:17 PM)7491159 Wrote:  
(19-01-2023, 12:38 PM)wawan.ru Wrote:  VCP_Script data:


em : string ;
begin
    ConnectToEcuUDS('17');
    if IsConnectedToEcu then
    begin
         Writeln('Connected');
         Writeln(GetECUNo);
         //change diag session to developer
         ChangeDiagSessionRaw('4F');
         //Programming date F199
         WriteDataByIDRaw(61849,'201102');
         //Tester fingerprint F198
         WriteDataByIDRaw(61848,'0181C8F6002E');
         if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
         WriteMemoryByAddr($03003C09,'01',$14);
         readedmem := ReadMemoryByAddr($03003C09,1,$14);
         Writeln(readedmem);
         Writeln('EEPROM update success');
         ECUReset;
    end
    else
    begin
         Writeln('Cant connect to cluster!!');
    end;
    CloseCommunication;
end

Compiling
Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

Check Synlax ,(
Remove the spaces in this line and retry to compile in VCP:

readedmem := ReadMemoryByAddr($03003C09,1,$14);

Code:
begin

    ConnectToEcuUDS('17');
    if IsConnectedToEcu then
    begin
         Writeln('Connected');
         Writeln(GetECUNo);
         //change diag session to developer
         ChangeDiagSessionRaw('4F');
         //Programming date F199
         WriteDataByIDRaw(61849,'201102');
         //Tester fingerprint F198
         WriteDataByIDRaw(61848,'0181C8F6002E');
         if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
         WriteMemoryByAddr($03003C09,'01',$14);
         readedmem:=ReadMemoryByAddr($03003C09,1,$14);
         Writeln(readedmem);
         Writeln('EEPROM update success');
         ECUReset;
    end
    else
    begin
         Writeln('Cant connect to cluster!!');
    end;
    CloseCommunication;
end
Compiling

Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed


ok
I figured out where the error is

need
var
readedmem : string ;

(on your post was " em : string ; ")

Thanks man ! Now all ok "Compiling
Compiled succesfully"

Thanks for correcting. Will update posts now
Let me know if you get success with which car and year !
Quote this message in a reply
19-01-2023, 17:25 PM,
Post: #28
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 12:58 PM)rehatflogs Wrote:  Thanks, have added script to first post
  • When finished. Have you checked for errors ? 0 Errors in 17 ?
Quote this message in a reply
23-01-2023, 10:14 AM,
Post: #29
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
Hello friends
Will it work with ODIS E 12.2.0
Can i use this method or script?
Thanx
Quote this message in a reply
23-01-2023, 21:41 PM, (This post was last modified: 23-01-2023, 21:50 PM by damkys500.)
Post: #30
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 00:28 AM)rehatflogs Wrote:  Finally released !

VCP script attached - Load, and Run !
Tested by other users and working

Still waiting for a macro version to use with ODIS-E so if anyone has it and could share that would be great smile


EDIT 1: Python script for ODIS E added [Image: enjoy.gif]

EDIT 2: Unencrypted VCP Script added

EDIT 3: Manual ODIS-E Commands:
Log in to control unit 17

Go to developer mode with code 20103
Open "Special Function" and then "Hex Service"
Enter the following code:
For RS Sport Layout:
3D 14 03 00 3C 09 01 03
For S Sport Layout:
3D 14 03 00 3C 09 01 01
For RS Sport Layout with Rainbow:
3D 14 03 00 3C 09 02 03 57

You forgot to add that before starting the macro it is necessary to check Bit 1-3 in 17 Instrument Cluster Byte 1 and the SW version must be 0300+!! VCP Script is encrypted! It is not recommended to use because they report various defects... I recorded via ODIS E 12.2 with the VAS5054A head, but I have the script from another site... It has been a day since the modification, but I have been checked for a while without errors... From activation to now, the car has been started several times times and restarted VC via VCP several times and everything is without errors... People who have errors, what did you record through? Via VCP?

(19-01-2023, 09:49 AM)cicoe Wrote:  
(19-01-2023, 09:15 AM)eip Wrote:  After upload script cluster have B20096 DTC :/

I wrote a message this morning reporting how is dangerous to use a script for this modification and it was deleted, here the result sad

Is the error in the VCP script or ODIS?
Quote this message in a reply


Possibly Related Threads…
Thread Author Replies Views Last Post
XZBMW BMW f34 cluster 6wa virgin-retrofit boweld11 1 30 Yesterday, 13:53 PM
Last Post: Ryzen
ORenult Megane 3 cluster need Flash backup file erikas523 0 16 25-04-2024, 19:20 PM
Last Post: erikas523
YTMercedes vito cluster mileage spoool 3 109 24-04-2024, 23:46 PM
Last Post: spoool
  Need DataFlash and Flash Tiguan 5NA920791C virtual cluster MCU D70F3526 popov 2 118 23-04-2024, 06:38 AM
Last Post: popov
ZTAudi Audi EDC17CP14 mileage smajchel1 2 120 14-04-2024, 17:55 PM
Last Post: Lifestyle
  Virtual Cockpit MMX serial connection ALeXXBody 9 2,208 13-04-2024, 05:06 AM
Last Post: oltiks
  Default Volvo XC60 2016 TFT cluster died during X-Tool programming slevy70 1 93 12-04-2024, 11:32 AM
Last Post: repair
  Audi TT Need PIN Haisam95 1 79 06-04-2024, 13:49 PM
Last Post: volavka
XZBMW BMW F-Series Cluster Virgin Needed stealthy88 1 101 05-04-2024, 13:35 PM
Last Post: alb3rt
  Tiguan 2012 cluster clone. Possible? Maikiu 2 134 02-04-2024, 07:53 AM
Last Post: Maikiu

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content