The MP3car.com Store The MP3car.com Blog    

Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > General Hardware Discussion > User Innovations

Reply
 
LinkBack Thread Tools Display Modes
Old 05-19-2005, 03:44 AM   #1
Registered User
 
Mastero's Avatar
 
Join Date: Aug 2001
Location: India
Posts: 1,636
HVAC Control on Car PC through Serial Port.

Hello friends,

This project started as a/c control with lpt port.

Now the project has gone a total different way.

The unit is controlled through serial port of your car PC or with a small accesory can be controlled by your USB port also.

Has a lot of features usefull for HVAC control.

Has remote controller funtion for emergency use. (WHEN THE PC IS NOT WORKING )

Full details on the product including manual , software , and VBfiles for making your own software can be found

This is the second version has lots of more features

IT COMES NOW IN TWO VERSION F and C

HERE


Cheers
Mastero
__________________
mastero76@hotmail.com


NEW LINK TO MY SITE ]{*}CYBER SHOP ONLINE{*}

AIRCON UNIT VER 2 IS NOW FOR SALE ]

Life is short enjoy it before it ends.

Last edited by Mastero; 09-27-2007 at 03:21 PM. Reason: Please change the title of this thread
Mastero is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 05-19-2005, 04:27 AM   #2
My Village Called
 
0l33l's Avatar
 
Join Date: Jul 2004
Location: Berkeley, CA
Posts: 10,763
Some suggestions:
Posts some pics
Have an option to use a LPT -> USB converter. Not many people want to run a huge parallel cable from their trunk
__________________
PowerVoice v1 | NaviVoice Source
GammaControl v2.4
SKINbedder v3

1995 Lexus SC300 <-- Weekend Car
1997 Mazda Miata <-- Daily Driver
0l33l is offline   Reply With Quote
Old 05-19-2005, 08:19 AM   #3
Registered User
 
Mastero's Avatar
 
Join Date: Aug 2001
Location: India
Posts: 1,636
Pics comming soon ..

And you dont have to run 25 wires ... only 9 wires

Mastero
__________________
mastero76@hotmail.com


NEW LINK TO MY SITE ]{*}CYBER SHOP ONLINE{*}

AIRCON UNIT VER 2 IS NOW FOR SALE ]

Life is short enjoy it before it ends.
Mastero is offline   Reply With Quote
Old 05-19-2005, 10:43 AM   #4
Raw Wave
 
Join Date: May 2003
Posts: 2,021
Its the ugly 25 way connector sticking out thats will bother me.
Chris31 is offline   Reply With Quote
Old 05-19-2005, 10:50 AM   #5
Raw Wave
 
god_of_cpu's Avatar
 
Join Date: Jan 2004
Location: SilverSpring Maryland
Posts: 2,957
So does your hardware get around the boot up issues? i.e. Various bits on the parallel port can be randomly set high or low during bootup potentially triggering a device connected to your hardware. What does your hardware do to get around this?
__________________
StreetDeck.com Developer (I am Chuck)
Get StreetDeck at http://www.streetdeck.com
The Official StreetDeck Forums have moved, please visit us at http://www.streetdeck.com/forum for official support for Streetdeck.
god_of_cpu is offline   Reply With Quote
Old 05-19-2005, 10:51 AM   #6
Raw Wave
 
lostreception's Avatar
 
Join Date: Sep 2004
Location: NY
Posts: 1,804
I think its a great idea no one utilizes there lpt hardly we need more sw/hw for it
its a wasted input for most of us
__________________
.______
| '_ |__\___
[(o)|___(o)] XB
._________
| I__I I_I|_\__I
[(o)______(o)]b VanPimpin'

LostReceptions Apps D/L Here

GPSGasoline- Rewriting

Draw- SkribblePad for Touchscreens

iGQwerty-iG3.0 Qwerty Keyboard

CarPCNetwork
lostreception is offline   Reply With Quote
Old 05-19-2005, 10:55 AM   #7
FLAC
 
evandude's Avatar
 
Join Date: Mar 2005
Location: Maine
Posts: 937
LPT<->USB converters are much harder to use than a built-in LPT port, from what I've heard, because the built-in ports are memory-mapped, so software interfacing is very easy (just read and write to memory locations), whereas the USB ones are not memory-mapped, so you would have to deal with whatever drivers the device uses to communicate with it; ie- a lot more work.

it could be done with a serial port, then you'd just have to use a microcontroller on the recieving end to convert the serial data to parallel outputs. (extremely easy... if mastero or someone else wants to tackle the software stuff, I would be willing to do the microcontroller stuff... mastero, perhaps you could add it as an option in your software?) and interfacing with a USB<->serial converter is the same as interfacing with a built-in serial port AFAIK, since they both just appear as COM ports to software (and COM ports are pretty easy to deal with for programmers, generally). That would make it more adaptable for people who are addicted to USB, especially since a lot of people already have USB hubs up front that it could be plugged into, saving having to run a new cable. And even if you ran a new cable, it would only have to be one wire (use chassis for ground, and power it via a 5v regulator off the closest 12v line)
__________________
But don't take it from me! here's a quote from a real, live newbie:
Quote: Originally Posted by Viscouse
I am learning buttloads just by searching on this forum. I've learned 2 big things so far: 1-it's been done before, and 2-if it hasn't, there is a way to do it.

eegeek.net
evandude is offline   Reply With Quote
Old 05-19-2005, 11:11 AM   #8
Raw Wave
 
Join Date: May 2003
Posts: 2,021
Quote: Originally Posted by god_of_cpu
So does your hardware get around the boot up issues? i.e. Various bits on the parallel port can be randomly set high or low during bootup potentially triggering a device connected to your hardware. What does your hardware do to get around this?


I was about to ask that. Some kind of a application verification is needed before the HW should react.
Chris31 is offline   Reply With Quote
Old 05-19-2005, 11:28 AM   #9
Raw Wave
 
Join Date: May 2003
Posts: 2,021
Quote: Originally Posted by evandude
LPT<->USB converters are much harder to use than a built-in LPT port, from what I've heard, because the built-in ports are memory-mapped, so software interfacing is very easy (just read and write to memory locations), whereas the USB ones are not memory-mapped, so you would have to deal with whatever drivers the device uses to communicate with it; ie- a lot more work.

it could be done with a serial port, then you'd just have to use a microcontroller on the recieving end to convert the serial data to parallel outputs. (extremely easy... if mastero or someone else wants to tackle the software stuff, I would be willing to do the microcontroller stuff... mastero, perhaps you could add it as an option in your software?) and interfacing with a USB<->serial converter is the same as interfacing with a built-in serial port AFAIK, since they both just appear as COM ports to software (and COM ports are pretty easy to deal with for programmers, generally). That would make it more adaptable for people who are addicted to USB, especially since a lot of people already have USB hubs up front that it could be plugged into, saving having to run a new cable. And even if you ran a new cable, it would only have to be one wire (use chassis for ground, and power it via a 5v regulator off the closest 12v line)

From what I have notice, the USB-SERIAL controller is not solid when it comes to plug and play. The comport may appear as another port next time the PC is booted up. It can also crash the software if the device is unplug since the virtual comport will disappear. Replugging it back in doesnt help, the software already got confused with the virtual comport being gone. Only way is to restart the software.

Probably not a problem to some but I didnt like it. Reason why I went USB all the way on my design. Those who doesnt know what Im on about check the anyone "interested in serial relay cards" thread. A long thread, but read the last few pages. Its a USB card capable of controlling 8 relays, 8 digital inputs and 3 ADC.
Chris31 is offline   Reply With Quote
Old 05-19-2005, 06:23 PM   #10
Registered User
 
Mastero's Avatar
 
Join Date: Aug 2001
Location: India
Posts: 1,636
Ok

a) USB or serial is OUt (sorry but its out. As software coding is already done and me not going to start over again)

b) Db 25 connector only on the Mobo side. Other side Db9 connector. (Only D0 ~D7 pins used)

c) The Lpt boot issue is what i am currently working on should get around it soon....

Mastero
__________________
mastero76@hotmail.com


NEW LINK TO MY SITE ]{*}CYBER SHOP ONLINE{*}

AIRCON UNIT VER 2 IS NOW FOR SALE ]

Life is short enjoy it before it ends.
Mastero is offline   Reply With Quote
Old 05-19-2005, 07:40 PM   #11
Low Bitrate
 
Join Date: Jun 2004
Location: Graham, WA
Posts: 82
you need any help in the programming part mastero? Im not real great but im working on it I do C++
88hondapreludes is offline   Reply With Quote
Old 05-19-2005, 07:47 PM   #12
Low Bitrate
 
M11VNY's Avatar
 
Join Date: Aug 2004
Location: Leicester & Reading, UK
Posts: 73
wow! sounds great so when can we take a look at the software! need any testers?? what car have you done this for?? will it work on any car?
__________________
Its down!!!! Sold the Golf so took it out, it's still alive but not installed.

Progress [-----------] 0%
Who the Daddy Iz!
M11VNY is offline   Reply With Quote
Old 05-19-2005, 08:44 PM   #13
Low Bitrate
 
Join Date: Mar 2001
Posts: 94
You can't bit-bang the LPT port with a USB-LPT adapter easily.

We had issues using the LPT port for our window/doorlock controller, and we solved it using our DSSC. We don't provide power to the board until after the PC has booted. Hell, it's one of the reasons we designed the DSSC to have that functionality.

That said, your probably better off just going USB and cutting your losses and doing a redesign. Parallel ports are a dying breed, and it's not wise to develop a product for dying technology.

Just my .02 cents...
__________________
Check out my carputers:
DVD, GPS, MP3, 6.4" LCD Touchscreen, 5" Headrest LCDs, PSone, DSSC, etc.
bergeron76 is offline   Reply With Quote
Old 05-19-2005, 08:55 PM   #14
My Village Called
 
0l33l's Avatar
 
Join Date: Jul 2004
Location: Berkeley, CA
Posts: 10,763
Quote: Originally Posted by bergeron76
That said, your probably better off just going USB and cutting your losses and doing a redesign. Parallel ports are a dying breed, and it's not wise to develop a product for dying technology.

Yeh, like lots of abit boards dont' have parallel ports now days The port is also too big on the motherboard, and no one wants to run more cables through their car.
__________________
PowerVoice v1 | NaviVoice Source
GammaControl v2.4
SKINbedder v3

1995 Lexus SC300 <-- Weekend Car
1997 Mazda Miata <-- Daily Driver
0l33l is offline   Reply With Quote
Old 05-20-2005, 12:25 AM   #15
Newbie
 
Join Date: Sep 2003
Location: Brisbane, Australia
Posts: 8
I am actually using a parallel relay controller board to do the same thing, except set temp., but have the problem of the a/c starting up on odd occasions when the PC is booting. If yours gets around this, I'll certainly give it a go and can use the relays for other gadgets.

Keep us posted
Kalus is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Using PC to control lighting. gguy General Hardware Discussion 7 10-16-2007 08:11 PM
Kenwood In-dash Monitors to control pc? DrBuzzo LCD/Display 4 12-08-2004 08:21 AM
cd changer control to control the pc babas151 General Hardware Discussion 6 10-26-2004 12:21 AM
software to control pc from ipaq spud42 Software & Software Development 3 11-13-2001 01:56 AM
Using a pda to control a normal PC All4Norway General Hardware Discussion 0 08-27-2000 08:52 AM


All times are GMT -5. The time now is 04:34 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics