| Plugin Development Extend the functionality of Centrafuse by developing plugins |
 |
|
March 14th, 2008, 07:46 PM
|
#21 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Aug 2007
Location: Slovenia
Vehicle: Fiat Stilo 1.9JTD 163HP
Posts: 1,727
|
With new version(CFTPMS_0.4.3.2) I still have same problems...
|
|
|
March 18th, 2008, 04:43 AM
|
#22 (permalink)
|
|
Super Moderator
Join Date: Jun 2007
Posts: 868
|
I have 0433 dll, and problems fixed....thanx Wolfgang!
Br,
MrBean
Last edited by MrBean; March 18th, 2008 at 06:51 AM.
|
|
|
March 18th, 2008, 04:52 AM
|
#23 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Aug 2007
Location: Slovenia
Vehicle: Fiat Stilo 1.9JTD 163HP
Posts: 1,727
|
Yes in dll 0.4.3.3 has fixed problems with blank main page and blank field in setup.
In 0.4.3.2 setup file missing few pictures(no usb...) and he will fix it to...
|
|
|
March 18th, 2008, 06:53 AM
|
#24 (permalink)
|
|
Super Moderator
Join Date: Jun 2007
Posts: 868
|
Yep, looking good too
Now to permanenly mount the TPMS in my car.....will do once David releases latest version of CF, 1.48 with new phone software - then I will mount the usb mic too.
ah, nearing completion. Finally.
|
|
|
March 18th, 2008, 07:09 AM
|
#25 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Aug 2007
Location: Slovenia
Vehicle: Fiat Stilo 1.9JTD 163HP
Posts: 1,727
|
I must put only sensors on tyres... For me Phoco work normaly without problems(Jabra A320s + TyTnII) and I normaly call, send/read sms, hear and speak by carpc soundcard trough bluetooth
When we dont have snow anymore I will put sensors into my tyres
|
|
|
March 18th, 2008, 07:43 AM
|
#26 (permalink)
|
|
Super Moderator
Join Date: Jun 2007
Posts: 868
|
Yep, I have phoco working too, but new phone is coming, and won't be supported  Or maybe after few hours struggle...hehe
Q Wolfgang: I see DeJan have this icon working in his setup, but in mine it's not displaying. The tyre/temp warning yellow triangles come up, but not this green OK status one-and I see I have no such png file in my skins folder....can you email this to me?
See attachment.
Br,
MrBean
|
|
|
March 18th, 2008, 07:56 AM
|
#27 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Aug 2007
Location: Slovenia
Vehicle: Fiat Stilo 1.9JTD 163HP
Posts: 1,727
|
I have it at home. you can find it in older package in new 0.4.3.2 is not included(missing). In 0.4.3.2 missing two icons. First is this STATUS OK and second is NO USB DEVICE...
|
|
|
March 18th, 2008, 08:12 AM
|
#28 (permalink)
|
|
3 Farad - Moderate Capacity
Join Date: Feb 2008
Location: NW Italian Alps
Posts: 36
|
Quote:
Originally Posted by deltabi
Wolfgang,
Do you plan to expand the functionalities of this nice plugin by providing the sensors data to others plugin using the CF_pluginData method?
I'm planning to design a plugin which collects several data coming from both the Centrafuse itself and various plugin (including TMPS) and I'd really appreciate if the TPMS plugin could allow others plugin to read the info in the TiresData array.
Also I would like to know what happens when a tire alarm is raised: do your plugin pops up over whatever is showing in Centrafuse?
Thanks,
Diego.-
|
Wolfgang,
Any news about the above subjects?
Thanks,
Diego.-
|
|
|
March 18th, 2008, 12:45 PM
|
#29 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Mar 2007
Location: Germany Oldenburg
Vehicle: Lotus Elan M100
Posts: 329
|
Hello Diego,
i will have a look into this. Up to now i had'nt realized any plugin to plugin communication. So it could be a new interesting point of view.
Code:
public override string CF_pluginData(string command, string param)
{
// Used for retrieving information from plugins. You can run CF_getPluginData with a plugin name, command, and parameter to retrieve information from other plugins running on the system.
string retvalue = "";
byte tnr = 1;
// param must be then converted tire number (1 to 5)
try { tnr = Convert.ToByte(param); }
catch {tnr = 0;};
if (tnr > 0)
{
switch (command.Trim().ToUpper())
{
case "GETPRESSURE":
retvalue = Convert.ToString(Tire[tnr-1].Pressure);
break;
case "GETTEMPERATURE":
retvalue = Convert.ToString(Tire[tnr-1].Temperature);
break;
case "GETBATTERY":
retvalue = Convert.ToString(Tire[tnr-1].Battery);
break;
case "GETREASON":
retvalue = Convert.ToString(Tire[tnr-1].TxReason);
break;
case "ISALERT":
retvalue = Convert.ToString(Tire[tnr-1].Alert);
break;
}
}
return retvalue;
}
i have made a small piece of code for that job, but i don't have the time to write a plugin which could retrieve these data. So feel free to make one and then we could test that.
Here is the modified tpms.dll (zipped version 0.4.3. 4) TPMS.zip
Bye Wolfgang928
Last edited by wolfgang928; March 18th, 2008 at 07:15 PM.
|
|
|
March 19th, 2008, 02:48 AM
|
#30 (permalink)
|
|
3 Farad - Moderate Capacity
Join Date: Feb 2008
Location: NW Italian Alps
Posts: 36
|
Quote:
Originally Posted by wolfgang928
Hello Diego,
i will have a look into this. Up to now i had'nt realized any plugin to plugin communication. So it could be a new interesting point of view.
[...]
i have made a small piece of code for that job, but i don't have the time to write a plugin which could retrieve these data. So feel free to make one and then we could test that.
Here is the modified tpms.dll (zipped version 0.4.3. 4) Attachment 686
Bye Wolfgang928
|
Thanks a lot, Wolfgang!
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
LinkBacks (?)
LinkBack to this Thread: http://forums.fluxmedia.net/plugin-development/2356-tpms-tire-monitoring-system-plugin.html
|
| Posted By |
For |
Type |
Date |
| DISCO3.CO.UK - View topic - Uploading/dowloading waypoints and/or tracks |
This thread |
Refback |
November 13th, 2008 04:16 AM |
| Welche Funktionen bietet Centrafuse mit OBD2? - OBD-II Fahrzeugdiagnose - Centrafuse? - Die ultimative CarPC Software |
This thread |
Refback |
November 9th, 2008 07:31 AM |
| Welche Funktionen bietet Centrafuse mit OBD2? - OBD-II Fahrzeugdiagnose - Centrafuse? - Die ultimative CarPC Software |
This thread |
Refback |
October 30th, 2008 03:30 AM |
| Welche Funktionen bietet Centrafuse mit OBD2? - OBD-II Fahrzeugdiagnose - Centrafuse? - Die ultimative CarPC Software |
This thread |
Refback |
October 30th, 2008 03:16 AM |
| TPMS sur votre carmedia - Forum Carmedia.org |
This thread |
Refback |
October 27th, 2008 01:01 PM |
| TPMS sur votre carmedia - Forum Carmedia.org |
This thread |
Refback |
October 26th, 2008 06:51 PM |
| TPMS sur votre carmedia - Forum Carmedia.org |
This thread |
Refback |
October 26th, 2008 05:58 PM |
| TPMS sur votre carmedia - Forum Carmedia.org |
This thread |
Refback |
October 26th, 2008 05:41 PM |
| KDJoteros.com - Toyota Landcruiser KDJ |
This thread |
Refback |
October 19th, 2008 05:19 PM |
| PCCar.ru - - |
This thread |
Refback |
October 17th, 2008 11:28 PM |
| TPMS (контроль давления в шинах) для CarPC - PCCar.ru - Ваш автомобильный компьютер |
This thread |
Refback |
October 16th, 2008 02:23 PM |
| Микроконтролери и електроника :: Преглед на тема - usb sensor reader |
This thread |
Refback |
October 4th, 2008 10:55 AM |
| TPMS (контроль давления в шинах) для CarPC - PCCar.ru - Ваш автомобильный компьютер |
This thread |
Refback |
September 23rd, 2008 09:44 AM |
| TPMS (контроль давления в шинах) для CarPC - PCCar.ru - Ваш автомобильный компьютер |
This thread |
Refback |
September 23rd, 2008 09:33 AM |
| TPMS (контроль давления в шинах) для CarPC - PCCar.ru - Ваш автомобильный компьютер |
This thread |
Refback |
September 23rd, 2008 05:46 AM |
| KDJoteros.com - Toyota Landcruiser KDJ |
This thread |
Refback |
September 10th, 2008 07:09 PM |
| MP3Car.com - View Single Post - Custom USB tyre pressure monitoring interface |
This thread |
Refback |
August 28th, 2008 11:34 AM |
| www.bukowc.com |
This thread |
Refback |
July 19th, 2008 08:34 AM |
| TPMS - A luxury feature for a non-luxury price. - Forums - Portal Media - Your Gateway to Mobile Information and Media |
This thread |
Refback |
July 19th, 2008 04:24 AM |
| Custom USB tyre pressure monitoring interface - Page 30 - MP3Car.com |
This thread |
Refback |
July 13th, 2008 05:46 PM |
| Custom USB tyre pressure monitoring interface - Page 34 - MP3Car.com |
This thread |
Refback |
July 10th, 2008 06:19 PM |
| www.soloCarputer.com :: Ver tema - Sensor de presion USB |
This thread |
Refback |
July 9th, 2008 02:06 PM |
| MP3Car.com - View Single Post - Custom USB tyre pressure monitoring interface |
This thread |
Refback |
July 8th, 2008 01:43 PM |
| CarComputer.si |
This thread |
Refback |
July 5th, 2008 03:56 AM |
| Микроконтролери и електроника :: Преглед на тема - usb sensor reader |
This thread |
Refback |
July 2nd, 2008 05:41 PM |
| www.bukowc.com |
This thread |
Refback |
June 27th, 2008 12:56 PM |
| Custom USB tyre pressure monitoring interface - MP3Car.com |
This thread |
Refback |
June 27th, 2008 11:09 AM |
| New TPMS Beta Ready for download - MP3Car.com |
This thread |
Refback |
June 25th, 2008 06:23 PM |
|
|