Bentley From the original 3 Litre to the current Continental GT and Mulsanne

13-18 BENTLEY Breitling Clock can id's

Thread Tools
 
Search this Thread
 
Rate Thread
 
  #1  
Old 03-24-2024 | 03:28 PM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts
13-18 BENTLEY Breitling Clock can id's

Any way to get the CAN ID's for this? I want to make a desk clock out of it but I need the CAN ID to set the time. It defaults to 12;00 when powered on and the backlight is can bus. or if anyone even knows the range i can try and sweep it.








 

Last edited by freshfitz; 03-24-2024 at 03:31 PM.
  #2  
Old 03-26-2024 | 11:11 AM
sam08861's Avatar
Registered User
Joined: Jun 2017
Posts: 513
From: nj
Rep Power: 39
sam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud of
Perhaps just plug the clock in at Noon/Midnight? (So that the time is correct)



 
  #3  
Old 03-26-2024 | 06:45 PM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts
I was thinking that, I may just do a timed relay at 11:59 that cuts the power for 30 secs
 
  #4  
Old 03-26-2024 | 06:56 PM
sam08861's Avatar
Registered User
Joined: Jun 2017
Posts: 513
From: nj
Rep Power: 39
sam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud of
That would work, but you'll be behind 30 seconds every day, which is less accurate than what quartz clock is capable of. (about +/- 15 seconds per month on average to as little as +/- 1 second/year)
 

Last edited by sam08861; 03-26-2024 at 06:58 PM.
  #5  
Old 03-27-2024 | 07:29 AM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts
I could do an ardino sync'd with NTP cut the power at 11:59:30 wait 15 secs power it back on about 10 15 secs for the hands to set it would stay in sync'd within a few secs. Would be cooler though if I could NTP sync with can bus and use the backlight tho
 
  #6  
Old 03-27-2024 | 04:56 PM
sam08861's Avatar
Registered User
Joined: Jun 2017
Posts: 513
From: nj
Rep Power: 39
sam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud of
That would be cool, the unidirectional spin when you set the time back is cool to watch. Is the CAN ID something that one can get VIA VCDS scan? If so, I'd be happy to check this weekend.

 
  #7  
Old 04-01-2024 | 09:46 AM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts
Got backlight and hour so far, still searching for Minute hex

back light ID 635 Hex 100 0 0 0 0 0 0 0
0-100 (off to full bright)
Time ID 623 HEX 0 2 0 0 0 0 0 0
X Hour 0-11 X X X X X X X
 
  #8  
Old Today | 06:08 AM
maba1972's Avatar
Registered User
Joined: Oct 2024
Posts: 2
Rep Power: 0
maba1972
Originally Posted by freshfitz
Got backlight and hour so far, still searching for Minute hex

back light ID 635 Hex 100 0 0 0 0 0 0 0
0-100 (off to full bright)
Time ID 623 HEX 0 2 0 0 0 0 0 0
X Hour 0-11 X X X X X X X
Hi,

how did you get the can IDs if it's not a secret?

Thank you,
Marko

I had the same idea and came across this forum via Google.
 
  #9  
Old Today | 07:32 AM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts
It was a little bit of luck and a little bit of a needle in a hay stack. After finding the correct baud rate I got a can response from the click, like a Hi I'm here and awake. I took that CAN ID then built a script to increment each bit by 1. After like 45 secs I got a back light and movement. I slowed down the script and eventually was able to scrape the can ID"s
I used an Ardino canbed which has the esp and MCP2515 on 1 board - https://www.seeedstudio.com/CANBed-A...51-p-4365.html

Think this is the code I used, so it takes each bit starts it at 00 and increments by 1 to FF then moves to the 2nd bit and increments both then on to the 3rd, etc.

I have done alot of can projects so quite familiar with CAN bus and esp 32's

Hope that helps
/*
This is for use with Sparkfun's CAN Bus Shield: https://www.sparkfun.com/products/10039
*/
#include<Canbus.h>
#include<defaults.h>
#include<global.h>
#include<mcp2515.h>
#include<mcp2515_defs.h>
voidsetup(){

Serial.begin(115200);
Serial.println("CAN Write - Testing transmission of CAN Bus messages");
delay(1000);

if(Canbus.init(CANSPEED_125)) //Initialise MCP2515 CAN controller at the specified speed
Serial.println("CAN Init ok");
else
Serial.println("Can't init CAN");

delay(1000);

}
int x = 0xFF;
int b = 0xFF;

voidloop()
{
tCAN message;
x++; // now x is 0xFB
b = b + 1;



// message.id = 0x6B2; //formatted in HEX
message.id = x, HEX; //formatted in HEX
message.header.rtr = 0;
message.header.length = 8; //formatted in DEC
message.data[0] = b;
message.data[1] = b;
message.data[2] = b;
message.data[3] = b; //formatted in HEX
message.data[4] = b;
message.data[5] = b;
message.data[6] = b;
message.data[7] = b;

//message.data[5] = message.data[6] +1;
// message.data[6] = message.data[6] +1;
// message.data[7] = message.data[7] +1;
// message.data[7] = message.data[7] +1;
// message.data[0]++;
mcp2515_bit_modify(CANCTRL, (1<<REQOP2)|(1<<REQOP1)|(1<<REQOP0), 0);
mcp2515_send_message(&message);
Serial.print("ID");
Serial.print(" ");
Serial.print(message.id, HEX);
Serial.print(" ");
Serial.print("HEX");
Serial.print(" ");
Serial.print(message.data[0], HEX);
Serial.print(" ");
Serial.print(message.data[1], HEX);
Serial.print(" ");
Serial.print(message.data[2], HEX);
Serial.print(" ");
Serial.print(message.data[3], HEX);
Serial.print(" ");
Serial.print(message.data[4], HEX);
Serial.print(" ");
Serial.print(message.data[5], HEX);
Serial.print(" ");
Serial.print(message.data[6], HEX);
Serial.print(" ");
Serial.print(message.data[7], HEX);
Serial.println("");
delay(100);

}
 

Last edited by freshfitz; Today at 07:35 AM.
  #10  
Old Today | 07:40 AM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts
I 3D printed a case, this is what it looks like, there are 3 buttons on the side, backlight with dimming function,set hour,set min


I
 
  #11  
Old Today | 07:43 AM
freshfitz's Avatar
Thread Starter
|
Registered User
Joined: Jun 2011
Posts: 13
Rep Power: 0
freshfitz is infamous around these parts

 
  #12  
Old Today | 07:56 AM
maba1972's Avatar
Registered User
Joined: Oct 2024
Posts: 2
Rep Power: 0
maba1972
Originally Posted by freshfitz
I 3D printed a case, this is what it looks like, there are 3 buttons on the side, backlight with dimming function,set hour,set min


I
A beautiful work of art! Perfect!
 
  #13  
Old Today | 11:07 AM
sam08861's Avatar
Registered User
Joined: Jun 2017
Posts: 513
From: nj
Rep Power: 39
sam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud ofsam08861 has much to be proud of
Originally Posted by freshfitz
I 3D printed a case, this is what it looks like, there are 3 buttons on the side, backlight with dimming function,set hour,set min


I

Nice work on 'hacking' your way in! Very impressed!

Clock looks awesome!

 
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
Randy V
Bentley
3
01-03-2024 01:39 PM
bent12341
Bentley
2
02-16-2022 08:13 AM
ilovecars
Bentley
0
03-01-2021 10:04 AM
dmvcarlover
Bentley
21
05-31-2016 08:44 AM
Erik
Bentley
20
10-06-2006 06:19 PM



You have already rated this thread Rating: Thread Rating: 0 votes,  average.

Quick Reply: 13-18 BENTLEY Breitling Clock can id's



All times are GMT -6. The time now is 11:40 AM.