-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Distinguish between various models #83
Comments
You'd hope that the information would be in that response somewhere! Is yours a Q90 or an R90? My ZE40 Q90 returns:
Would be good if we could build up enough data to work out which fields are actually useful here, and which car variants they correspond to. |
Happy to contribute! My ZE50 R135 returns:
"vehicleDetails": {
"vin": "x",
"engineType": "5AQ",
"engineRatio": "605",
"deliveryCountry": {
"code": "DE",
"label": "ALLEMAGNE"
},
"family": {
"code": "X10",
"label": "FAMILLE X10",
"group": "007"
},
"tcu": {
"code": "AIVCT",
"label": "AVEC BOITIER CONNECT AIVC",
"group": "E70"
},
"navigationAssistanceLevel": {
"code": "SAN408",
"label": "CRITERE DE CONTEXTE",
"group": "408"
},
"battery": {
"code": "BT4AR1",
"label": "BATTERIE BT4AR1",
"group": "968"
},
"radioType": {
"code": "NA40A",
"label": "ENND,
2BI + 2BO + 2T, DOUBLE MICRO, FM1/DAB+FM2, AVEC CARTO", "group": "425"
},
"registrationCountry": {
"code": "DE"
},
"brand": {
"label": "RENAULT"
},
"model": {
"code": "X102VE",
"label": "ZOE",
"group": "971"
},
"gearbox": {
"code": "BVEL",
"label": "BOITE A VARIATEUR ELECTRIQUE",
"group": "427"
},
"version": {
"code": "INT A MC 1L"
},
"energy": {
"code": "ELEC",
"label": "ELECTRIQUE",
"group": "019"
}
} |
ZE40 R110 returns:
'vehicleDetails': {
'vin': 'x',
'registrationDate': '2020-06-16',
'firstRegistrationDate': '2020-06-16',
'engineType': '5AQ',
'engineRatio': '607',
'deliveryCountry': {
'code': 'BE',
'label': 'BELGIQUE'
},
'family': {
'code': 'X10',
'label': 'FAMILLE X10',
'group': '007'
},
'tcu': {
'code': 'TCU0G2',
'label': 'TCU VER 0 GEN 2',
'group': 'E70'
},
'navigationAssistanceLevel': {
'code': 'NAV3G5',
'label': 'LEVEL 3 TYPE 5 NAVIGATION',
'group': '408'
},
'battery': {
'code': 'BT4AR1',
'label': 'BATTERIE BT4AR1',
'group': '968'
},
'radioType': {
'code': 'RAD06D',
'label': 'RADIO 06D',
'group': '425'
},
'registrationCountry': {
'code': 'NL'
},
'brand': {
'label': 'RENAULT'
},
'model': {
'code': 'X101VE',
'label': 'ZOE',
'group': '971'
},
'gearbox': {
'code': 'BVEL',
'label': 'BOITE A VARIATEUR ELECTRIQUE',
'group': '427'
},
'version': {
'code': 'LTD MF 18RP'
},
'energy': {
'code': 'ELEC',
'label': 'ELECTRIQUE',
'group': '019'
},
'yearsOfMaintenance': 12,
'connectivityTechnology': 'RLINK1',
'easyConnectStore': False,
'electrical': True,
'rlinkStore': False,
'deliveryDate': '2018-09-19',
'retrievedFromDhs': False,
'engineEnergyType': 'ELEC',
'radioCode': '0230'
} |
It looks like we're on the right track with the model code. I wonder what it is for Zoe 22...
The other interesting fields seem to be:
|
This is a Q210 from 2013 with the 41kWh battery upgrade |
For my dashboard application I had collected some information:
Zoe R240:
Zoe ZE40 Q90:
Zoe ZE40 R90:
Zoe ZE40 R110:
Zoe ZE50 R110:
Zoe ZE50 R135:
|
And for |
So decoding some of the values is easy. |
Austria/R135/ZE50/Zen {
"engineType":"5AQ",
"engineRatio":"605",
"deliveryCountry":{
"code":"AT",
"label":"AUTRICHE"
},
"family":{
"code":"X10",
"label":"BAUREIHE X10",
"group":"007"
},
"tcu":{
"code":"AIVCT",
"label":"MIT AIVC-ZENTRALELEKTRIK",
"group":"E70"
},
"navigationAssistanceLevel":{
"code":"SAN408",
"label":"CRITERE DE CONTEXTE",
"group":"408"
},
"battery":{
"code":"BT4AR1",
"label":"BATTERIE BT4AR1",
"group":"968"
},
"radioType":{
"code":"RA404",
"label":"A-IVIENDD, 2BO + 2BI + 2T, DOUBLE-MICRO, MIT SPCX, UKW1/DAB+UKW2",
"group":"425"
},
"registrationCountry":{
"code":"AT"
},
"brand":{
"label":"RENAULT"
},
"model":{
"code":"X102VE",
"label":"ZOE",
"group":"971"
},
"gearbox":{
"code":"BVEL",
"label":"ELEKTRISCHES VARIATOR-GETRIEBE",
"group":"427"
},
"version":{
"code":"ZEN A MC 1L"
},
"energy":{
"code":"ELEC",
"label":"ELEKTRISCH",
"group":"019"
},
"registrationNumber":""
} |
Hi,
Do you think it is possible to use the "Kamereon.vehicles" response to work out what functionnality is available (or not available)?
In particular, it would be great to at least distinguish between ZE40 and ZE50, for issues like #77.
This is what I have on ZE40:
Could we use version (INT MB 10R for Zoe 40)?
Or maybe engineType/engineRatio (5AQ-601 for Zoe 40)?
What does it show for other users? I don't have other vehicles to compare...
The text was updated successfully, but these errors were encountered: