| Plugin Development Extend the functionality of Centrafuse by developing plugins |
 |
|
October 4th, 2009, 03:06 PM
|
#171 (permalink)
|
|
Centrafuse Partner
Join Date: Jun 2008
Location: Wellington, New Zealand
Vehicle: R34 Skyline GTR VSPEC II, EP3 Civic Type R
Posts: 312
|
Yes you can use that kit. Alok has developed / made that kit which is one you can purchase complete without having to assemble things. It's made to match or exceed Robbies initial design and is compatible with the plugin.
|
|
|
October 5th, 2009, 07:40 AM
|
#172 (permalink)
|
|
5 Farad - High Capacity
Join Date: Sep 2009
Posts: 62
|
thanks f1racr.
Yes, Robbie did a great job with his modifications but it's too much of a challenge for me to built something that complicated (my skill level is not that advanced).
|
|
|
December 17th, 2009, 01:07 PM
|
#174 (permalink)
|
|
Super Moderator
Join Date: Jun 2007
Posts: 868
|
@ RS4: No - you have to either use Alok's TPMS, or head over to Mp3Car Forum, and search for RobbyBMW, he started this project, and you have to get your hands on a 3rd Eye TPMS kit, and then a pre-programmed PIC Micro, make a PCB, and hack it together.
Alok's device is much more pro (not to detract from Robby's idea), as there is no hacking involved.
If you want to go the DIY route though, I have documented the procedure here in my project log on how to do the hack.
Please be advised, that as of now, there is no plugin for CF3 available yet - they guys are working on it
Last edited by MrBean; December 17th, 2009 at 01:10 PM.
|
|
|
December 17th, 2009, 01:51 PM
|
#175 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Aug 2008
Posts: 339
|
FYI i have all but 1 line of code converted to vb.net for CF3.. and i need help on this last line:
C#
Code:
//--------------------------------------------------------------------
// Get the transmission reason
//--------------------------------------------------------------------
Tire[n-1].TxReason = (Reason)inputReport.Buffer[4];
vb.net (automated translation)
Code:
'--------------------------------------------------------------------
' Get the transmission reason
'--------------------------------------------------------------------
Tire(n - 1).TxReason = DirectCast(inputReport.Buffer(4), Reason)
the vb.net translation errors to:
Code:
Error 6 Value of type 'Byte' cannot be converted to 'TPM.TPM.TPM.Reason'. E:\Documents\Projects\TPM\TPM\TPM.vb 646 63 TPM
anyone have a better translation of the c# line?
If i can solve the error i should have a working TPMS for CF3 ... pending the TEDIOUS conversion of the skin.xml.
|
|
|
|
The Following 3 Users Say Thank You to Sonicxtacy02 For This Useful Post:
|
|
December 19th, 2009, 10:46 AM
|
#176 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: May 2008
Posts: 577
|
I'd love to use this on my truck, but it'd need to monitor a minimum of 10 tires (18 if I monitor the trailer tires).
|
|
|
December 19th, 2009, 12:28 PM
|
#177 (permalink)
|
|
Moderator
Join Date: May 2009
Location: Las Vegas, NV USA
Vehicle: 2005 Toyota Tacoma
Posts: 589
|
Quote:
Originally Posted by Sonicxtacy02
FYI i have all but 1 line of code converted to vb.net for CF3.. and i need help on this last line:
C#
Code:
//--------------------------------------------------------------------
// Get the transmission reason
//--------------------------------------------------------------------
Tire[n-1].TxReason = (Reason)inputReport.Buffer[4];
vb.net (automated translation)
Code:
'--------------------------------------------------------------------
' Get the transmission reason
'--------------------------------------------------------------------
Tire(n - 1).TxReason = DirectCast(inputReport.Buffer(4), Reason)
the vb.net translation errors to:
Code:
Error 6 Value of type 'Byte' cannot be converted to 'TPM.TPM.TPM.Reason'. E:\Documents\Projects\TPM\TPM\TPM.vb 646 63 TPM
anyone have a better translation of the c# line?
If i can solve the error i should have a working TPMS for CF3 ... pending the TEDIOUS conversion of the skin.xml.
|
Try this first:
Tire(n - 1).TxReason = CType(inputReport.Buffer(4), Reason)
If that doesn't work, double check that Option Strict is off.
If "Reason" is of type String, these two functions might be of use:
Public Function string_to_byte(ByVal Data As [String]) As [Byte]()
Dim encoding As New System.Text.UTF8Encoding()
Dim byteArr As [Byte]() = encoding.GetBytes(Data)
Return byteArr
End Function
Public Function byte_to_string(ByVal Data As [Byte]()) As [String]
Dim encoding As New System.Text.UTF8Encoding()
Dim strDest As [String] = encoding.GetString(Data)
Return strDest
End Function
The DirectCast results that the online C# translators provide seems to be a problem in many cases.
VegasGuy55
|
|
|
January 30th, 2010, 03:02 PM
|
#178 (permalink)
|
|
Centrafuse Partner
Join Date: Jun 2008
Location: Wellington, New Zealand
Vehicle: R34 Skyline GTR VSPEC II, EP3 Civic Type R
Posts: 312
|
Sonic, it's awesome to see someone working on this plugin for CF3.......
Thanks so much for taking the time to work on this. I'd be happy to contribute to your efforts once you've got a working version...... I think it's only fair for people here to contribute towards these plugins.
Thanks again
|
|
|
|
The Following User Says Thank You to f1racr For This Useful Post:
|
|
February 6th, 2010, 11:36 PM
|
#179 (permalink)
|
|
3 Farad - Moderate Capacity
Join Date: Apr 2006
Location: Singapore
Vehicle: Subaru Legacy 2.5 GT Wagon
Posts: 25
|
Got the hardware now from Djean thanks for shipping
Any update on a CF3 plugin
|
|
|
February 8th, 2010, 02:00 PM
|
#180 (permalink)
|
|
10 Farad - Flux Capacity
Join Date: Aug 2008
Posts: 339
|
expect a plugin right around the time 3.1 is released
|
|
|
|
The Following 2 Users Say Thank You to Sonicxtacy02 For This Useful Post:
|
|
| 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 |
|
|