Audi Forum banner

CarPC Project

208K views 414 replies 72 participants last post by  coucouillu 
wich USB-Can adapter is now the best?
 
When i'm home i gonna try to setup my carPC
- ITX M10000 + 1GB Ram + 8GB CF card + Linksys Wlan.
- 6,5 Touchpad with USB wich i put in front of my RNS-E
- (i connect trough the IMA+ from Kufatec and also for back-camera.)

I will try, Windows7/XP, Ubuntu and also Android wich one the best is.

I'm looking for a good CanUsb adapter, also a possible unlock/VIM hack for my 'MY 2010 RNS-E'
 
AudiA4Turbo22,

Touchscreen taken from Mouser, Fujitsu model: T010-1301-T350 and chinese controller from ebay. Unfortunately no FIS yet.
You use an RNSE MY 2010, is it VIM hacked?
 
Intel onboard graphics HD also allows to adjust your resolution to a custom setting
 
Gonna try this soon ;-)
 
Got a PU in my car. I know for VIM, but if you put a switch in between the canbus cables and switch them out while riding, RNS-E is still showing TV.
However this is not a nice setup.

I ordered myself all the components already for the VGA-RGB Csync thingy, together with a CAN-USB adapter from lawicel, and arduino with canbus shield.
Purpose is that the arduino will send the "TV is here!" signal to the RNS-E instead of an adapter or can-usb adapter, also i have to figure out if it have 2 different lines.
Then it should send all canbus signals from the cluster-gateway to arduino and arduino is sending on its way to the RNS-E and vice versa, only it will skip the speed code. So my RNS-E will not know that my car is driving. But first i need to test that.

Got an ITX Epia M10000 with 1GB ram, 1Ghz to test VGA input.

What's that adapter on the left? RS232 port? or VGA? You made up yourself?
btw i am from belgium, if you would be dutch speaking ;-)
 
That PCB do you have in Eagle? So i can send it to a PCB printer.
And make me a few of these. Have to figure out where to put the components etc...

I just start to order the things. I played and fooled already around with all these kufatec IMA's, Alpine KCE 415i,...
 
Guys,

I am playing now with an arduino to shoot in the canbus TV enabled signal. But the knowledge of an arduino is too basic... :(

found out a code and already tried to adjust this one to TV "here"...

Code:
#include <Canbus.h>
#include <defaults.h>
#include <global.h>
#include <mcp2515.h>
#include <mcp2515_defs.h>
void setup()
{
  Serial.begin(9600);

  //Initialise MCP2515 CAN controller at the specified speed
  if(Canbus.init(CANSPEED_250))
    Serial.println("CAN Init ok");
  else
    Serial.println("Can't init CAN");
  delay(1000);
}
void loop()
{
  static char counter=0;

  tCAN message;
  message.id = 602;
  message.header.rtr = 0;
  message.header.length = 8;
  message.data[0] = 0x81;
  message.data[1] = 0x12;
  message.data[2] = 0x30;
  message.data[3] = 0x3A;
  message.data[4] = 0x20;
  message.data[5] = 0x41;
  message.data[6] = 0x46;
  message.data[7] = 0x20;
  mcp2515_bit_modify(CANCTRL, (1<<REQOP2)|(1<<REQOP1)|(1<<REQOP0), 0);
  mcp2515_send_message_J1939(&message);
  counter++;
  delay(100);
}
Only i think the speed isn't good, should be 100ms if that 250 also means ms...

(here some more http://secuduino.blogspot.com/2011/10/fis-seat-leon-cupra-english.html)

But Rogue i've seen on your fb you created the print yourself with an iron? (etsing?) Can you tell more about this?
 
Top