Using with iTrip

Hi.
Does anyone know if iPhone can be used with the Griffin iTrip for incar?
I'm sure it should be fine but thought I'd check if anyone had tried...
Many thanks,
Chris.

I have the iTrip Universal one. The one that plugs into the headjack and not the 30pin port.
The phone gives off a lot of interference to devices that are made for the iPhone specifically.
However the Universal one (headjack one) while does get some interference, it works great and I listen to a lot of podcasts (and my music) on the way to work.
I can go for hours without interference depending where I am. I think I finally narrowed it down that I only get interference for certain things.
1. When call or txt comes in (but not when it checks mail on interval...odd)
2. When moving it and jumps from one tower to another. Along interstate doesn't happen much as I live where a tower has a long line of sight. In tall building areas, happens now and then. Never to the point it is unusable.
If I really want to stop interference I can always switch to Airplane Mode, but I never felt I had to (except when on family trip and the only person I care about calling is my wife and she is with me).
I tried the 30pin one and got more interference. I would recommend the Universal one (headjack one) since I haven't seen any from anybody that carry the "Made for iPhone" seal.

Similar Messages

  • Freezing after use with Itrip

    Anybody experience their ipod freezing after using an itrip. Mine is now frozen! Nightmare. Ihave tried to reset it but nothing happens after the obligatory 6-10 secs. Any suggestions
    Andy

    is it safe (for the cpu, I mean) opening the Power Mac when it's on? Or I should boot with leaving the door open?!? However I have just powered the Mac on, left it alone for 20 min with only Folding@home running, come back, open 2 windows on SeaMonkey... and the computer froze when closing down one window, and it took 3 restarts to boot this time: first time it just stuck at the grey screen with the darker shade of grey apple in the middle (with a strange grey horizontal line just over and left from the apple), 2nd restart it booted up to the desktop view, the mouse was working but I couldn't do anything apart from moving it around the screen, 3rd time is now... I don't think it's overheating (but still...). Thanks for the help.

  • IPOD min frozen fol use with ITRIP

    Left my Itrip on my mini and now can not play mt mini unless it's through the computer (windows). Have tried a reset but to no avail.. Any suggestions out there
    Andy

    I am having a similar problem - I just purchased a pioneer DEH-P690UB indash car stereo, but I can not get the radio to recognize my iPod mini (N/A USB). The installar has a newer iPod, which worked when he tested the system, so I have been looking for the new firmware to see if that will help.
    Can anyone direct me to the firm ware downloads?

  • Using Griffin iTrip in Denver area?

    My daughter is thinking of purchasing an iTrip for her iPod mini, to use in her car. Anyone have exp using one in the Denver area with any luck?
    I had one back in the Green Bay area years ago, and it didn't work very well as Green Bay is situated right where many radio markets overlap at the edge of their signals, so there was never a good empty freq to use. Not sure about the Denver area...
    Thanks!

    I don't use the iTrip but use the Monster iCarPlay FM transmitter and there are a few stations that I use just fine like 90.1, 91.7, etc.
    Oh yeah, I live in Denver too

  • HT201328 I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first or set one up for her and then unlock the phone.

    I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first ( I now have a new iphone on this account) or set one up for her and then unlock the phone. I am worried about upsetting the new phone.

    I would complete unlocking as is and then
    restore as new once you know the iPhone is unlocked
    Be aware Orange will process the request at their speed
    one of the reasons they usually reside at bottom of User Sat surveys
    will likely take weeks
    This may also help
    http://support.apple.com/kb/HT5014

  • Acmcneill1ug 14, 2014 7:16 AM I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great. When check how much memory I am using, with only Safar

    Acmcneill1ug 14, 2014 7:16 AM
    I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great.
    When check how much memory I am using, with only Safari open I am using 3.9 and more of her 4.0 memory. She is very. very slow in processing. I had 4000
    trash to clean out and it took her over an hour to expel. Also for some reason Safari will not allow me to click on a link, in my G-mail, and let it go to the page.
    It has a sign saying a pop-up blocker is on and will not let me do it. I must open the stamp to look at my e-mails and if I have redirected link now I can do it.
    I have not changed my preferences so where is this pop-up blocker?
    I have looked at preferences on Safari and Google, which I do not understand Google, and do not see where this blocker could be.
    Malware is something I want to make sure is not on my computer. Tech Tool Pro 6 is all I know of and it does not detect Malware.
    Help.
    Ceil

    Try Thomas Reed's Adware removal tool. He posts extensively in the communities.
    Malware Guide - Adware
    Malware Discussion

  • Not Refresh Value After Add New Record used with RPC Component

    This is my code in the class Users.as
    package inthanous
    import mx.controls.Alert;
    import mx.rpc.http.HTTPService;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    public class Users
    private var service:HTTPService;
    [Bindable]
    public var xmllist_user:XMLList;
    public function Users(){
    service = new HTTPService();
    service.method = "POST";
    service.useProxy = false
    service.resultFormat = "e4x";
    public function listUser():void{
    service.url = "/user/get_all_user_group_name";
    service.addEventListener("result", httpResultListUser);
    service.addEventListener("fault", httpFaultListUser);
    xmllist_user = new XMLList();
    service.send();
    private function httpResultListUser(event:ResultEvent):void{
    service.removeEventListener("result", httpResultListUser);
    service.removeEventListener("fault", httpFaultListUser);
    xmllist_user = new XMLList(service.lastResult.children());
    listAllUser();
    private function httpFaultListUser(event:FaultEvent):void{
    var faulstring:String = event.fault.message;
    service.removeEventListener("result", httpResultListUser);
    service.removeEventListener("fault", httpFaultListUser);
    Alert.show(faulstring,"Error");
    public function createUser(_xml:XML):void{
    service.url = "/user/create_user";
    service.addEventListener("result", httpResultCreateUser);
    service.addEventListener("fault", httpFaultCreateUser);
    service.send({firstName: _xml.firstName,
    lastName: _xml.lastName,
    gender: _xml.gender,
    login: _xml.login,
    pwd: _xml.pwd,
    dtBirth: _xml.dtBirth,
    telephone: _xml.telephone,
    idGroup: _xml.idGroup
    private function
    httpResultCreateUser(event:ResultEvent):void{
    service.removeEventListener("result", httpResultCreateUser);
    service.removeEventListener("fault", httpFaultCreateUser);
    listUser();
    clearUserDetail();
    private function httpFaultCreateUser(event:FaultEvent):void{
    var faulstring:String = event.fault.message;
    service.removeEventListener("result", httpResultCreateUser);
    service.removeEventListener("fault", httpFaultCreateUser);
    Alert.show(faulstring,"Error");
    This code i used with Ruby on Rail to connect with MySQL.
    When i used with FireFox browse after i create new user
    success it refresh the new record in Datagrid. But for the Internet
    Explorer Datagrid not refresh it because of it display the old
    recode before create.
    So i don't know it problem by Internet Explorer or my script.
    i hope someone can help me the solve this problem.
    thanks

    If you restrict the selection, a record value outside of that selection is not acceptable and will give you this error. This is how BPS works.
    You need to restrict on some other char so BASIC1 doesn't come in, but this value should be part of any selection on ZSEGMENT field for it to be accepted back.

  • After ios 8 update I can no longer play music through my car. I have a 2012 Nissan Rogue - whihc has its own cable made to use with iPhone 4 - I use a apple adapter to converst to use with 5.

    After ios 8 update I can no longer play music through my car. I have a 2012 Nissan Rogue - which has its own cable made to use with iPhone 4 - I use a apple adapter to converst to use with 5. Has been working fine up until update. Is there a fix for this? The car does not have usb

    Here I come to save the daaaaaaaaaay!!!
    Had the same issue with my Nissan Rogue 2011.
    This listed below will fix it...
    Go to General > Restrictions > CarPlay -- Make sure Carplay is DISABLED. (The new IOS 8 enables this on default)
    Go to General > Reset > Reset Network Settings
    The Nissan Rogue radio system was never designed to work with CarPlay. By default, CarPlay feature comes enabled when you install IOS 8. Suckz, right?
    You're very welcome! Have a great day!
    Sincerely,
    The Superhero

  • Inland external usp mouse malfunctio​ning when used with HP Pavilion dv6-2155dx laptop.

    I have a external usb mouse I have been using with my HP laptop for over two years now and it has always worked without a problem. This week it suddenly stopped working properly. Often it does not work when I click on it even after several tries. Due to disability with hands it is too hard to use the pointer on the pad on my laptop. I need to use a mouse.
    I am not sure if it is a bug from a recent software update or an issue with my snyaptics program (which is what I suspect).  I am older and my computer knowledge is not so good anymore.
    What can I do to diagnose to see where the problem is. I cannot afford to take my laptop in for service right now.
    Thanks

    Hi Richard61,
    Thank you for your post, I will do my best to assist you.
    I understand that your mouse is not working properly.  Here is a document onTroubleshooting Mouse Problems (Windows 7, Vista, XP).  Have you tried a different usb mouse?  Have you tried it in a different USB port?
    It is not the synaptics program as that has to do with Touchpads, not the mouse.  If you believe it was an update, you may be able to do a system restore back to when it was working correctly.  You could try running  MS Fix It to help resolve issues and look for updates. You should also run the HP Support Assistant  to aid with updates and resolve issues.  Please let me know how it turns out.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • How do I format my external HD to use with iMac?

    I have an external HD by Maxtor that I have used with a Windows computer. I am changing to iMac and want to use the same drive. I have transferred the files on it to my iMac successfully. But now I can't clean up the drive because everything is "read only". I read in Maxtor support how to format the drive but it was directions for Mac OS 9 and I couldn't figure it out.

    Additionally, you need to be aware of OS X file system formats and partition mapping schemes are two different things.
    OS X requires the Mac OS Extended (HFS+) file system formatting—applies to both PPCs and ICBMs (Intel-chip-base Macs). Details on file system formats are in <http://developer.apple.com/documentation/Performance/Conceptual/FileSystem/Art icles/MacOSXAndFiles.html>.
    PPCs require the ApplePartition Map scheme and the ICBMs the GUID Partition Table scheme. Details on partition mapping schemes are in <http://developer.apple.com/documentation/MacOSX/Conceptual/universalbinary/universal_binary_tips/chapter_5_section10.html>.
    So, for your situation, in addition to Mr. Clifton's advice, you need to select the GUID partition map scheme.

  • HT5624 Why in my email ( the one on my ipod5 that I use with my apple ID) when I get emails about my use of my apple ID to use a service in the from field it has my fathers name and when I click on it it shows his contact info ????

    Why in my email ( the one on my ipod5 that I use with my apple ID) when I get emails about my use of my apple ID to use a service in the from field it has my fathers name and when I click on it it shows his contact info ???? I also set up my apple ID with a new email account and also I signed up for iCloud but used the same apple I'd email and password but it gave me a I cloud email! I did activate the favorites in my email . Noticed the from field has my fathers name and contact and it is a notification about me using my apple ID to sign in to FaceTime! Something is messed up, not sure how or why???

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • Please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    Ok, you should generally only get this when you are converting your ID to an iTS account for the first time.
    Sign into iTunes with your Apple ID and you should get this.... IRC once you agree or accept it's now an iTS account and you wont get that again.

  • When i log in my apple id in itunes a message prompt me "This Apple ID has not yet been used with the itunes store" what do i need to do?

    when i log in my apple id in itunes a message prompt me "This Apple ID has not yet been used with the itunes store" what do i need to do?

    If you can log into the computer, go to the Mac App Store and purchase Mavericks under your AppleID.   Even though its free, they still consider it a purchase.
    If you are not able to log into your Mac you can try on a different Mac.  Once you purchase it, you can stop the download if you want.
    Once you do that then you should be able to reinstall via the Recovery HD

  • My itunes comes up with this when i try to download purchased songs: this devise is already associated with an apple id. this devise can be used with another apple id in 82 days. i need help to see if i can fix this problem please.

    i have an iphone 4s i signed out of my itunes on the devise and my friend signed herself into ituned but i signed her out an myself back in but my purchased songs and tones cannot download. it gives me a message of:this device is already associated with an apple id. this device can be used with another apple id in 82 days! is there anyway for me to fix this or override something. im freaking out!!

    Sorry: once a device has been authorised for a particular iTunes account you can't change it to another until 90 days have passed. This is to prevent people cirumventing the restrictions of purchases to one account from consteantly swopping between accounts. You will have to wait for the 82 remaining days, and there is no workaround.

  • I cannot sign in.  "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc."

    I applied and received an upgrade code to Redeem Mountain Lion for my new MBP. 
    I get this message when I try to Sign in to the App Store after entering the redemption content code, and also if I just try to "Sign In".   The first part of the error is true - I haven't used the AppleID with the iTunes store.  
    I received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    I also tried to re-create this appleID...(it was one suggestion I saw for this issue) It doesn't let me since the ID already exists...
    The error is:
    "This Apple ID has not yet been used with the iTunes Store.  Please review your account information."  I click "Review", next message "You must turn on cookies to continue.   Cookies must be enabled if you want to create or edit.. etc." 
    It's clearly not a cookie issue..   Stuck...

    The first part of the error is true - I haven't used the AppleID with the iTunes store. 
    Try here >  Using an existing Apple ID with the iTunes Store and Mac App Store
    received the upgrade code using this same AppleID, so I don't think I can use a different AppleID.
    Correct.
    It's clearly not a cookie issue..
    As for cookies. Quit the App Store. Now open the Finder. From the Finder menu bar click Go > Go to Folder.
    Type this exactly as you see it here:   ~/Library/Cookies
    Click Go the move the   com.apple.appstore.plist   file from the Cookies folder to the Trash.
    Relaunch the App Store.

Maybe you are looking for

  • I would Like to try a Canon all-in-one laser printer...

    I have not configured my new MacBook Pro yet but I have a few questions. 1. I have been using Tiger for the past 3 years and will be using Snow Leopard (installed, I hope) with the new MacBook. Is there anything anyone can think of (besides not makin

  • How can i transfer files and applications from an old windows 98SE OS?

    Recently, i was surprised with a brand spanking new 15.4" 2.2 GHZ intel core 2 macbook pro. before this awesome new notebook, i was using a very old, arthritic windows 98SE OS and everything in my whole computing life is stored on that old win98SE an

  • Sample/bit rate for Garage Band '08

    Hello, I don't have a Mac yet, but am going to get the mini soon and do some acoustic/keyboard stuff in Garage Band to get back into recording. What is the sample and bit rate for the new version? I had read that older versions were 16? Thanks. Joe

  • Have app store uk and spain

    Hello! I live in UK and my ipad is english but I would like to know if when I get back home to Spain I could get Apps from the spanish app store and how I could do it in a way I could change it to uk back? Thank you

  • [package related not upgrade related] xorg-server-kdrive won't compile

    The page related to this package suggests that it fails to build except I'm not too sure what to make of the comments - at any rate, it refuses to compile, complaining about something like %.04X not being what the compiler expected it to be or some s