Hellen 154 Hyundai

Hardware inside and outside of the ECU
Post Reply
User avatar
AndreyB
Site Admin
Posts: 13681
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Hellen 154 Hyundai

Post by AndreyB »

We are starting a 154 Hellen!

Primary target platform 2010-2014 Genesis Coupe 2.0T

https://github.com/rusefi/rusefi/wiki/Hellen-154-Hyundai
Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
User avatar
AndreyB
Site Admin
Posts: 13681
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Re: Hellen 154 Hyundai

Post by AndreyB »

Norman chose to make this board open so https://github.com/rusefi/hellen154hyundai

This board is pretty ready for review.

And https://github.com/rusefi/hellen154hyundai/issues/16 :)
Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
User avatar
AndreyB
Site Admin
Posts: 13681
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Re: Hellen 154 Hyundai

Post by AndreyB »

Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
User avatar
AndreyB
Site Admin
Posts: 13681
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Re: Hellen 154 Hyundai

Post by AndreyB »

They say testing might happen next week!
image.png
image.png (82.6 KiB) Viewed 3521 times
Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
User avatar
NormanAlphaspeed
Posts: 35
Joined: Fri Jan 13, 2017 7:15 am
Location: Puerto Rico
Contact:

Re: Hellen 154 Hyundai

Post by NormanAlphaspeed »

Hey guys

I've been doing testing on this and I have to say, I am impressed by how well it works! We're doing more dev testing, and here are a few videos!





I'll keep posting on here when new progress is made!
User avatar
AndreyB
Site Admin
Posts: 13681
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Re: Hellen 154 Hyundai

Post by AndreyB »

Next step we need some CAN Lua for A/C logic

just a skeleton for now:

Code: Select all

-- listen to CAN ID 0x500
canRxAdd(0x500)

-- todo: add payload logic
packet546 = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 }

function onCanRx(bus, id, dlc, data)
	id11 = id % 2048
	print('got CAN id=' .. id .. ' dlc='  .. dlc)
	-- todo: add filtering logic if needed

	rpm = getSensor("RPM")
	-- handle nil RPM, todo: change firmware to avoid nil RPM
	rpm = (rpm == nil and 0 or rpm)

	if rpm > 800 then
		-- at the moment we simply
		txCan(1, 0x546, 0, packet546)
	end


end

function onTick()
end
Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
nmstec
contributor
contributor
Posts: 124
Joined: Tue Oct 05, 2021 9:02 pm
Location: Vancouver

Re: Hellen 154 Hyundai

Post by nmstec »

Norman, spoke to Andrey. Need to give you heads up.

ECU will need to output AC Pressure, Coolant temp, and current AC status.

I'll attach wiring diagram for you below.


ECU on this car also reads ac pressure sensor.
Voltage = 0.00878835 * Pressure + 0.37081095 [PSIA]
image.png
image.png (469.48 KiB) Viewed 3087 times
0x132
Byte 0 = Vents
Byte 1 = Airflow
Byte 2 = Compressor
Attachments
Hyundai AC.pdf
(875.28 KiB) Downloaded 82 times
"Dave B. 5:03 PM
Mark is an ass but by far the most potent combination of knowledgeable ass, smart ass, get it done ass and determined ass. and his ass consistently puts in time."

-Dave B, Hero, Tuner, and probably has a car.
ykill
Posts: 32
Joined: Thu Feb 23, 2023 7:26 pm

Re: Hellen 154 Hyundai

Post by ykill »

I'm looking to produce some boards for my clients.
Does it still support cruise control?
Anything we should know that isn't supported by that?
User avatar
AndreyB
Site Admin
Posts: 13681
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Re: Hellen 154 Hyundai

Post by AndreyB »

ykill wrote:
Wed Mar 01, 2023 9:24 pm
I'm looking to produce some boards for my clients.
Be aware of https://github.com/rusefi/hellen154hyundai/issues?q=is%3Aissue+is%3Aopen+label%3Arev-C-hall-drama
Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
Post Reply