Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Celui acheté par priusfan ou celui que j'ai acquis semble bien fonctionner.
TextView autoradLabel = new TextView(this);
AbsoluteLayout.LayoutParams autoradTextLayout = new AbsoluteLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 15 , getWindow().getWindowManager().getDefaultDisplay().getHeight() - 70);
autoradLabel.setLayoutParams(autoradTextLayout);
[B][COLOR=DarkGreen]//autoradLabel.setTypeface(Typeface.createFromAsset(this.getAssets(), "fonts/Faith.ttf"));[/COLOR][/B]
autoradLabel.setText("AutoRAD Industries");
autoradLabel.setTextSize(18);
layout.addView(autoradLabel);
Quels sont les compteurs intéressants niveau batterie principale (je n'ai pas vu grand chose ) ?
et sa réponse:Bonjour,
I tested today and some values are OK...
It is possible on prius to do multiple requests in ONE command;
of course the answer is multiframe; but the result is 5 times faster than requesting one by one the values.
in the attached document , here is a tested example.
Hi
Requests for the same PID are already optimised in this way (behind the scenes so you don't have to worry about it) 🙂
Regards
Ian
Bonjour, je suis vos travaux au fur et à mesure, (guinness je t'ai laissé un MP) mais sérieusement, ne me dites pas que le dongle reste alimenté contact coupé, si ??.😢
Les différentes vitesses disponibles sur le BUS de la Prius sont toujours différentes de celle affichée au tableau de bord. Elles sont similaires à la vitesse relevée par un GPS y compris celui de la Prius.
sendcmd("\r", fd, fplog); readandlogdata(fd, fplog);// send \r to wake it up
sendcmd("ATZ\r", fd, fplog); wait(1.0); readandlogdata(fd, fplog);// ATZ reset need extra time lowest 0.8 sec tested OK
//sendsettingscmd("AT PP 01 SV 00\r", fd, fplog);// set headers ON by default, only need to do once
//sendsettingscmd("AT PP 01 ON\r", fd, fplog);
sendsettingscmd("STSN\r", fd, fplog); //show device serial number
sendsettingscmd("STSLCS\r", fd, fplog); //show PowerSave configuration
sendsettingscmd("STI\r", fd, fplog); //show firmware version
sendsettingscmd("STDI\r", fd, fplog); //show device version
sendsettingscmd("ATPPS\r", fd, fplog); //show programmable parameters list
sendsettingscmd("ATL1\r", fd, fplog); // turn on line feed
sendsettingscmd("ATSP6\r", fd, fplog); // set protocol to #6
sendsettingscmd("ATDPN\r", fd, fplog); // check protocol should be 6
sendsettingscmd("ATH1\r", fd, fplog); // turn on header
sendsettingscmd("ATCAF0\r", fd, fplog); // turn off formatting
//sendsettingscmd("ATR0\r", fd, fplog); // turn off waiting for car to reply for queries
sendsettingscmd("ATST FF\r", fd, fplog); // set timeout in units of 4 ms; Flyer suggested using FF, try shorter timeout in case Fujitsu goes to sleep erroneously
sendsettingscmd("ATCM 00000000\r", fd, fplog); // set CAN ID mask
Les lignes "ST..." supposent que la puce n'est pas une ELM327 mais une STN111x. La comparaison de ELM327 et STN1110 est faite dans le fichier2009prius sur priuschat a publié sur sourceforge son projet.
J'y ai vu du c et voici, au cas où la séquence d'init de l'elm327.
...