IS - 2nd Gen (2006-2013) Discussion about the 2006+ model IS models
Old 01-07-15, 01:07 PM
How-Tos on this Topic
Last edit by: IB Advertising
See related guides and technical advice from our community experts:

Browse all: Interior
Print Wikipost

FlyAudio In-Dash Multimedia GPS Navigation System for Lexus IS250/350

Thread Tools
 
Search this Thread
 
Old 04-13-10, 12:48 PM
  #586  
NemeGuero
Lexus Test Driver
iTrader: (15)
 
NemeGuero's Avatar
 
Join Date: Feb 2009
Location: WA
Posts: 864
Likes: 0
Received 1 Like on 1 Post
Default

What does it use to determine when to autodim? The time of day? I don't have mine wired to the illumination stuff but it does that too.
Old 04-13-10, 12:56 PM
  #587  
Automax Service
Former Sponsor
 
Automax Service's Avatar
 
Join Date: Nov 2009
Posts: 485
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by NemeGuero
What does it use to determine when to autodim? The time of day? I don't have mine wired to the illumination stuff but it does that too.
I'm not 100% sure.

Last edited by Automax Service; 04-13-10 at 01:11 PM.
Old 04-13-10, 01:03 PM
  #588  
javyLSU
2IS OG
iTrader: (21)
 
javyLSU's Avatar
 
Join Date: Mar 2006
Location: New Haven, CT
Posts: 7,888
Received 31 Likes on 15 Posts
Default

Originally Posted by NemeGuero
What does it use to determine when to autodim? The time of day? I don't have mine wired to the illumination stuff but it does that too.
I'm pretty sure it's the system clock that governs that function. I can't remember if it was 6 or 7pm, but I remember seeing the system auto dim a few times when I was in my car right on the hour.

Javier
Old 04-13-10, 02:15 PM
  #589  
ItWasntMe
Rookie
 
ItWasntMe's Avatar
 
Join Date: Aug 2009
Location: SoCal 626
Posts: 86
Likes: 0
Received 0 Likes on 0 Posts
Default

Thanks for the info Mat and Javier
Old 04-13-10, 02:52 PM
  #590  
IceIridium
Lexus Test Driver
iTrader: (2)
 
IceIridium's Avatar
 
Join Date: Mar 2009
Location: BC
Posts: 983
Received 10 Likes on 8 Posts
Default

What temperature setting are you all using?

On my stock unit, I normally set it at 18 deg C (about 64 deg F) for a comfortable range.

With the flyaudio, I need to set it to 42 deg F (about 5 deg C!!) so that neither the heater or the air con is blasting unnecessarily. And in no way does it actually get to 42 cus then I'd be driving in a refrigerator!

Is that a software issue? Thermostat issue? What temp are you folks using?
Old 04-13-10, 05:39 PM
  #591  
supaIS350
Lead Lap
 
supaIS350's Avatar
 
Join Date: Jul 2006
Location: NOLA
Posts: 741
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by javyLSU
I'm pretty sure it's the system clock that governs that function. I can't remember if it was 6 or 7pm, but I remember seeing the system auto dim a few times when I was in my car right on the hour.

Javier
I thought it auto dim when the auto headlights are on meaning it's dark.
Old 04-13-10, 05:41 PM
  #592  
supaIS350
Lead Lap
 
supaIS350's Avatar
 
Join Date: Jul 2006
Location: NOLA
Posts: 741
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by IceIridium
What temperature setting are you all using?

On my stock unit, I normally set it at 18 deg C (about 64 deg F) for a comfortable range.

With the flyaudio, I need to set it to 42 deg F (about 5 deg C!!) so that neither the heater or the air con is blasting unnecessarily. And in no way does it actually get to 42 cus then I'd be driving in a refrigerator!

Is that a software issue? Thermostat issue? What temp are you folks using?
Sounds like an issue. I set mine to 65-70F and it's pretty cold.
Old 04-13-10, 09:11 PM
  #593  
2006Onyx
Driver School Candidate
 
2006Onyx's Avatar
 
Join Date: Apr 2010
Location: CA
Posts: 10
Likes: 0
Received 0 Likes on 0 Posts
Default

Hey guys, so today I put some good "seat time" trying things out on the flyaudio. I see what some of you say about how limited the ipod controls are.

(Not a dig of flyaudio, just an observation)

So coming home I was thinking of what I really wanted, and that was:
- Ability to browse by playlist
- Ability to browse by genre

This led me to more thinking about how to fix it, atleast until flyaudio can add it into the GUI and I had an idea...What if I "swapped" the Artist name with the Playlist (or Genre)? Then I could browse by the playlist in the car, and I could still browse by Artist on the iPod (By thumbing through the Playlist/Genre field)

A little more thinking and I realized that the playlist idea doesn't scale well as some create multiple playlists containing the same song, so I dropped that idea and went forward with just the Genre idea.

I am certainly not a great programmer by any means, but I checked out AppleScript (for the first time) tonight, and I have a solution to do the swap "enmasse" The only caveat is that you obviously need a mac. (Granted, I use a PC most of the time, but I don't know how to get internal iTunes handles using a more PC-Friendly programming language)

Ok, so here it is, open Applescript, copy/paste, then open iTunes, go in the library, select all your songs, and go back to AppleScript and run the script.

I will insert the usual disclaimer here that "I am not responsible if your music gets corrupted, your car turns into a space ship, or you loose 10 pounds" by using the script, so I would either back your music up first, or try it on a single file to make sure you are happy with the results.

This isn't the best way to distribute it, but I don't have a webserver to host the file.
For some reason the 'close brace' character is not copying in, so when you paste this code into AppleScript, replace the "**" with a closed brace

Code:
--Track Genre <> Artist Name swapper" for iTunes
--written by 2006Onyx

--Swaps the Genre and Artist Name fields on your iPod so you can browse genre's on a flyaudio

--Used portions from "Track Number to Song Name Prefix" for iTunes"
--written by Doug Adams
--dougadams@mac.com

--v2.0 apr 9 2010
-- Universal binary
-- tidying of code

--v1.0 feb 3 2005
-- initial release

--Get more free AppleScripts and info on writing your own
--at Doug's AppleScripts for iTunes
--dougscripts.com


tell application "iTunes"
	set theseTracks to {**
	if selection is not {** or view of front window is not library playlist 1 then
		if selection is not {** then -- use selection
			set theseTracks to selection
		else -- use whole playlist
			try
				set theseTracks to every file track of view of front window
			end try
		end if
	else
		display dialog "Select some tracks or a Playlist..." buttons {"Cancel"** default button 1 with icon 2
	end if
	if theseTracks is {** then display dialog "No useable tracks..." buttons {"Cancel"** default button 1 with icon 2
	
	set fixed indexing to true
	display dialog "Artist <> Genre Swapper

Allows you to choose a Genre by browsing the 'Artist' field in your FlyAudio ;)

If you need to switch it back, just run this again!

Click OK to start"
	with timeout of 30000 seconds
		repeat with aTrack in theseTracks
			my SwapArtistAndGenre(aTrack)
		end repeat
	end timeout
	
	set fixed indexing to false
	
end tell

to SwapArtistAndGenre(aTrack)
	tell application "iTunes"
		tell aTrack
			set temp to ((get genre))
			set genre to ((get artist))
			set artist to temp
			set temp to ""
		end tell
	end tell
end SwapArtistAndGenre
Cheers!

Last edited by 2006Onyx; 04-13-10 at 09:16 PM. Reason: Added the part about the ** meaning closed brace
Old 04-13-10, 10:33 PM
  #594  
Pearl250
Rookie
 
Pearl250's Avatar
 
Join Date: Oct 2009
Location: BC
Posts: 56
Likes: 0
Received 0 Likes on 0 Posts
Default

I just put in my order! EXCITED!
Old 04-13-10, 11:18 PM
  #595  
javyLSU
2IS OG
iTrader: (21)
 
javyLSU's Avatar
 
Join Date: Mar 2006
Location: New Haven, CT
Posts: 7,888
Received 31 Likes on 15 Posts
Default

Originally Posted by IceIridium
What temperature setting are you all using?

On my stock unit, I normally set it at 18 deg C (about 64 deg F) for a comfortable range.

With the flyaudio, I need to set it to 42 deg F (about 5 deg C!!) so that neither the heater or the air con is blasting unnecessarily. And in no way does it actually get to 42 cus then I'd be driving in a refrigerator!

Is that a software issue? Thermostat issue? What temp are you folks using?
No issues here, my temperature works the same as before I installed the FlyAudio unit - i set it anywhere from 68 to 74 degrees.

Javier
Old 04-14-10, 01:01 AM
  #596  
djzx
Rookie
 
djzx's Avatar
 
Join Date: Jun 2009
Location: CA
Posts: 77
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by supaIS350
I thought it auto dim when the auto headlights are on meaning it's dark.
Yes, auto dim works when headlights/parking lights are turned on...if you have the auto dim feature on.
Old 04-14-10, 07:31 AM
  #597  
javyLSU
2IS OG
iTrader: (21)
 
javyLSU's Avatar
 
Join Date: Mar 2006
Location: New Haven, CT
Posts: 7,888
Received 31 Likes on 15 Posts
Default

Originally Posted by supaIS350
I thought it auto dim when the auto headlights are on meaning it's dark.
Originally Posted by djzx
Yes, auto dim works when headlights/parking lights are turned on...if you have the auto dim feature on.
You guys are absolutely right - the auto dim works in conjunction with the headlights being on. I was thinking of the "night mode" on the navigation software when the maps turn the background black.

Javier
Old 04-14-10, 11:22 PM
  #598  
IceIridium
Lexus Test Driver
iTrader: (2)
 
IceIridium's Avatar
 
Join Date: Mar 2009
Location: BC
Posts: 983
Received 10 Likes on 8 Posts
Default

Going back to the temperature question for a moment... Sorry but it's bugging me... I found out today my temp maxes out at 64 and then it just goes into "hi" mode. That can't be right, that's only 17.8 deg C! Strange that none of you have this issue... Any theories from the software gurus as to why? Something I can change in the windows CE o/s?

Need help plz!!
Old 04-15-10, 03:10 AM
  #599  
ekwlee
Pole Position
 
ekwlee's Avatar
 
Join Date: Mar 2010
Location: hawaii
Posts: 200
Likes: 0
Received 0 Likes on 0 Posts
Default

hurry up everyone!! find the bugs and have flyaudio fix it and then do the work to have diff nav systems run well on it and i'll be SURE to jump on :-D
Old 04-15-10, 07:12 AM
  #600  
javyLSU
2IS OG
iTrader: (21)
 
javyLSU's Avatar
 
Join Date: Mar 2006
Location: New Haven, CT
Posts: 7,888
Received 31 Likes on 15 Posts
Default

Originally Posted by IceIridium
Going back to the temperature question for a moment... Sorry but it's bugging me... I found out today my temp maxes out at 64 and then it just goes into "hi" mode. That can't be right, that's only 17.8 deg C! Strange that none of you have this issue... Any theories from the software gurus as to why? Something I can change in the windows CE o/s?

Need help plz!!
I'm not sure I understand you... When you turn your A/C all the way towards cold, that's when you say it maxes out at 64? Because that's what happenens (and has always happened) in mine. If you turn it all the way down (cold) it just goes into 'HI' mode and the fan blows on max with the A/C on.

Javier


Quick Reply: FlyAudio In-Dash Multimedia GPS Navigation System for Lexus IS250/350



All times are GMT -7. The time now is 03:06 AM.