Availability of real GPS applications for 3G?

Firstly, I'm not talking about turn-by-turn navigational software. I have no use for that.
What I mean by "real" GPS software is software that enables me to get Lat/Longs (or coordinates in other coordinate systems), WAAS availability, parallel channels, and preferably that is fully WGS-84 compliant (or EGM96, better yet), and can handle different datums.
Do I have a snowball's chance in heck, or do I just go back to my Blackberry and go give my money to Garmin? Thanks in advance.

I no of no program that does WGS-84, or any standard for that matter, but I see no reason why a iPhone couldn't do that. Wait a month or two in till more programs come out for the iPhone.

Similar Messages

  • New to java.. What I need to develop GPS application for Blackberry

    I was wondering what everything I needed to get started developing GPS applications for blackberrys.
    It interest me a lot.. and I know C# and some VB. I am wanting to learn so getting a book would be good but just wondering what developer tools I needed to develop this kind of application. I currently have Visual Studio 2008 and I have seen a plug in for it.

    JacobDixon wrote:
    I was wondering what everything I needed to get started developing GPS applications for blackberrys.
    It interest me a lot.. and I know C# and some VB. I am wanting to learn so getting a book would be good but just wondering what developer tools I needed to develop this kind of application. I currently have Visual Studio 2008 and I have seen a plug in for it.Whoa there partner! Let's learn to walk before we fly. Are you going to try to do this in .NET or with Java? If .NET, then have fun with Visual Studio and find yourself a .NET forum because this isn't it. If you're going to want to do this with Java, then go to the Sun tutorial site, find the getting started section, and start following those directions. Don't worry about the GPS and blackberry stuff for a good 3-12 months, depending on your current knowledge and abilities.

  • GPS APPLICATION FOR N80ie

    Hello Friends,
    Just need to know if exist a GPS application for Nokia N80ie. Please let me know, where I can find one.
    Thanks,
    Jaime Torres
    5068200600
    Costa Rica

    You can use Nokia Maps (download the version for the N73 http://europe.nokia.com/A4509291 and Nokia Map Loader from the same page) Just remember to start Nokia Maps on the phone after install before you use Map Loader. It needs to create some folder.
    This will give you access to maps but to get GPS you will need to purchase a GPS receiver such as Nokia LD3W (connects via Bluetooth).
    If you want voice navigation you have to pay for that but you can also try it for free for 3 days. You can access this from the options menu in Nokia Maps.
    N95 8GB (v20)

  • Iphone 3G and REAL GPS software?

    Hi,
    My question is easy :
    When Apple will produce or open on Appstore REAL GPS software for iPhone?
    Because since July we can't use iPhone as a GPS in a car...
    And GPS only out a car says nothing.
    TomTom and others have define solution for iPhone but always nothing on store.
    Why and When?
    Best regards,
    Laurent

    you are confusing GPS with software that uses GPS to give you turn by turn directions. the GPS in the iPhone IS real GPS, it just doesn't have software to do turn by turn directions. unfortunately, you and many others associate GPS with directions. GPS stands for Global Positioning System, which is what the iphone does.... it doesn't stand for Global Turn By Turn Directions System
    just because it doesn't have the software you want doesn't make it any less of a "real" GPS....

  • Applications for Nokia Lumia 800 no more available...

    I cannot find applications for my Nokia Lumia 800 with Windows 7 operative system.
    Marketplace and Nokia Apps Highlights no longer support applications for my Phone?

    I have no idea what you are saying, I can get apps on my L800 without any problem and new apps become available almost daily.
    Also currently available apps get updated frequently for me so it is unclear to me what it is you are trying to say.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • GPS System for MAC's

    I do a great deal of driving and am in the market for a GPS navigation system. I have a center console mount for my mac and would like to find the appropriate software to run a GPS system on the computer. I can find the software with the external usb hook up for windows. Does anyone know of a package that works with mac's or if the systems available for windows will work if I buy "parallels".

    Knownothing -
    I just wanted to say that although you (I'm sure) are looking for a "cost effective" way to get GPS into your car by integrating it with your computer, it is not the way to go.
    If you're doing a great deal of driving I would suggest a real GPS unit, and a real good one.
    PC or Mac based GPSs are slow, often inaccurate due to only finding a few satellites and usually don't give you turn by turn directions.
    I would suggest a Garmin unit in the StreetPilot Series or the Nuvi series. They are phenomenal units and cheapest at a very reliable seller: shipdog.com
    I have purchased 3 GPS units through them. With GPS you get what you pay for, and if you're only going to shell out say $100-$150 for a GPS device and software, you're going to get what you pay for.
    Good luck with your choice
    I just wanted to add that I'm not just saying this because I love garmin devices; I'm saying this because I have tried all that junk before:
    GPS-->Laptop
    GPS-->Pocket PC
    And the only thing that really works well is a REAL GPS unit.

  • GPS application with static jpg map

    Hi all,
    I am writing an gps application with a static map image (jpg) of a smal area. I would like to use this image to display users position within the area when he is in this area and let users zoom in-out.  I also need to specify specific positions within the area of coverage. How can I specify it.
     Is there a standard way (preferably with example) of specifying the coordinates that the image covers and positions and how to handle it?
    is there a better or other standard way of displaying map in the application?
    will appreciate.
    regards,
    rnv

    The only thing you really need is a translation function to convert geographical coordinates and pixel coordinated. Assuming your map is covering a smll area you should be able to treat the earth as though it's flat to keep the equations simple.  I will also assume the edges of your map are parallete to the lines of latitude and longitude. You will need to find the latitudes and longitudes that the 4 corners of the map respresent.
    Let's assume you've got your image and you've found the four coordinates to which your cordners map. I'll name these coordinates A, B, D, and D.
    A          B
      +------+
      |      |
      |      |
      +------+
    C         D
    Under this system for small maps you can use linear interpolation to map real coordinates to pixel coordinates on your map.  Let's say the coordinates of the 4 points are as follows (I don't know what actually falls in these coordinates in real life, they have been chosen arbitrarily).
    A = (30N, 110W)
    B = (30N, 120W)
    C = (20N, 110W)
    D = (20N, 120W)
    Let's also say your image is 1000 pixels wide by 500 pixels high. If your user's real coordinates were (24N, 117W) then the pixel coordinates on the map could be found as follows.
    X = ((1000)/(110-120)) * (110-117) = 700
    Y = ((500) / (20N-30N)) * (20N-24N) = 200
    So the point on the above map that is representational of the user's position would be (700, 200).  Since you would allow the user to zoom (and presumably pan) you would also have adjust these pixel coordinates so that they go through the same transformation that the map does.

  • Is there a turn by turn sofware or a GPS reciever for a macbook pro?

    I am interesting in upgrading my pc laptop to a macbook pro.  I currently use microsoft streets and trips off my laptop to use GSP Turn by Turn navigation.  Can i do this on a macbook?

    I agree with the Google Map with internet connection.
    Alternatively, you can consider USB GPS receiver with offline map applications. Since most of the USB GPS receiver does come with their own app (which may cause a bit more for updated maps like most of the GPS receivers on the market.)
    Other than that, I recommend a real GPS receiver or iPhone/iPad.

  • Application for the post of an ORACLE DBA

    =================================================================
    ============
    ARUNKUMAR RAGHAVAN MSc,BEd,PGDMCH,(MBA)
    =================================================================
    ============
    CURRICULUM VITAE
    Covering letter
         From
    Arunkumar.R, email : [email protected],
    [email protected]
    No 16 /9 Nagendra nagar,
    Velachery main road, checkpost,
    Near jaya hospital,
    Chennai -600 042.
    Respected Sir / Madam,
    SUB : Application for the post of      
    ORACLE DBA / DBO - Reg
    I wish to submit the following few lines for your kind
    consideration.
    I feel more comfortable and satisfactory with this type of job
    as
    I am keen to serve as an employee of your esteemed organization,
    which has an intellectually stimulating and emotionally
    satisfying environment.
    I assure that, I will do my duty to the fullest satisfaction of
    my
    higher officials, colleagues and to the best of my knowledge and
    belief.
    I am attaching my CV, first 2 pages of my first book –“ORACLE
    ARCHITECTURE MADE EASY”, and a newsletter about Penta Media
    Graphics Ltd, my present employer.
    Expecting the favour of your earliest reply.
    Thanking you with respectful regard,
    Yours truly,
    (ARUNKUMAR.R)
    =================================================================
    ============
    CAREER OBJECTIVE
    1.     To be a dependable ORACLE DBA and to deploy an
    efficient DATA WAREHOUSE and DATA MART.
    2.     To write unique books on ORACLE DBA and DATA WAREHOUSING
    for enthusiastic learning
    Experience summary
    q     Five years and six months of overall experience in
    Software Industry.
    q     Over 24 months of work experience in the administering,
    and maintaining the Oracle Database of sizes 3 GB
    q     Training and authoring books, CBT’s,WBT’s for Oracle DBA
    and
    Data Warehousing .
    Technical skills
    Hardware               IBM PC, MAC
    Operating Systems          WINDOWS NT, 95/98/2K, MS-DOS,
    LINUX, MAC-OS
    RDBMS                    ORACLE 8I, DBASE, FoxPro,
    MSACCESS
    Internet Tools          HTML, IIS, FrontPage
    Responsibilities at PENTAMEDIA GRAPHICS LTD,
    (formerly known as PENTFOUR SOFTWARE EXPORTS LTD, SEI-CMM LEVEL
    4 COMPANY )
    1. Maintaining an "Oracle Pre-Production Database" of size 3 GB.
    2. In charge of the CBT's on Data Warehousing & ORACLE
    DBA.
    3. Installing and upgrading the Oracle server (Oracle 7.3,
    Oracle 8.0,
         ORACLE 8i,) and application tools.
    3.     Allocating system storage and planning future storage
    requirements
    for the database system.
    5. Creating Tablespaces for the different group of
    projects namely
         SOFTWARE, ENGINEERING, MANAGEMENT, and SCHOOL PROJECTS.
    6. Creating tables, views and modifying the database
    structure, as
         necessary, required by Project Leaders and Programmers.
    7. Enrolling users and maintaining system security and
    controlling and
         monitoring user access to the database.
    8. Backing up and restoring the database.
    Specific Achievements
    1. CBT's and WBT's authored (Reference:
    www.pentalearn.com )
    * Data Warehousing for beginners
    * Data Warehousing - Intermediate
    * Stepping into ORACLE DBA
    * ORACLE DBA - Security
    * ORACLE DBA - Backup & Recovery
    * Step by Step - ORACLE DBA
    * OCP GUIDE - Architecture & Administration
    Under Production
    * OCP GUIDE - Backup & Recovery
         2. Book's authored (Under compilation)
    * ORACLE ARCHITECTURE MADE EASY.
    * Learn ORACLE DBA in 23 days.
    4.     Knowledge of documentation and procedures for SEI CMM -
    ISO –
         QUALITY AUDITS.
    4. Academic Project - (Reference: [email protected])
    o Title           ORACLE QUESTION BANK
    o Outline           Training software for OCP
                   (Oracle Certified Professional)
    o Period           DEC 1998 - JAN 1999
    o Software           VB 5.0, M.S.ACCESS
         5. Awards :
    State first & district first in Vivekananda Academy
    of cultural
    Studies
    =================================================================
    ============
    Employment History
         1. Company Name           :     Pentamedia
    Graphics ltd
    Title          :     instructional designer
    Level           :     Senior Executive
    Specialization :     IT/Computer Systems/Software
    Function      :     Professional /
    Consultant / Specialist
    Industry :     Computer / Information
    Technology (Software)
    Date Joined :     12 oct 1999
    Duties           :     Responsible for CBT’s,
    WBT’s on DATA
                        WAREHOUSING & ORACLE DBA.
                        project guide for TEAM
    members.
                        Developed 5 training
    software.
                        Maintaining "ORACLE-
    PRODUCTION DATABASE"
                             of size 3GB.
    Reason for leaving:     working currently
    2. Company Name      :     S.A.International ltd
    Title           :     training officer
    Level           :     Senior Executive
    Specialization :     IT/Computer Systems/Software
    Function      :     Lecturer / Teacher /
    Trainer
    Industry :     Computer / Information
    Technology (Software)
    Date Joined :     08 Aug 1997
    Date Left      :     09 Sep 1999
    Duties :     At S.A.INTERNATIONAL LTD,(A joint
    venture company of ELCOT, GOVT OF TAMILNADU UNDERTAKING)
    Responsible for all training programmes.
                             Project guide
    for all college students.
                        Senior Faculty
    for "ORACLE DBA" classes.
    Accomplishment :     Wrote student guides on office
    2000                               and on ORACLE DBA
                        Developed 3 training
    software.
    Reason for
                   leaving      :     To get more
    experience on ORACLE DATABASE
                        MAINTENANCE
    3. Company Name      :     G.K.M.college of
    engineering & technology
    Title           :     lecturer
    Level           :     Junior Executive
    Specialization      :     Education
    Function      :     Lecturer / Teacher /
    Trainer
    Industry      :     Education
    Date Joined :     06 May 1996
    Date Left      :     09 Aug 1997
    Duties           :     Incharge of computer
    science department,
                        Conducting classes and
    all academic                                    
         activities.
    Accomplishment :     Wrote 2 student guides on office
    1997                                    and on
    ORACLE DBA.
    Reason for
                   leaving      :     To get more
    experience on ORACLE DBA
                        Activities
    4. Company Name      :     Infra computers pvt ltd
    Title           :     Asst.technical manager
    Level           :     Junior Executive
    Specialization :     Training & Development
    Function      :     Executive
    Industry      :     Computer / Information
    Technology
    Date Joined :     30 Apr 1995
    Date Left      :     06 Jun 1996
    Duties           :     Monitor the day to day
    operations of the
    SOFTWARE/HARDWARE SERVICE DEPARTMENT. Monitor the DEPARTMENT
    STOCK and cash flow position, Meeting executives for Business
    development activities
    Accomplishment :     Joined the Company since August 1994
    as Asst TECHNICAL MANAGER. Promoted to TECHNICAL MANAGER in july
    1996.
    Reason for
                   leaving      :     To study M.B.A
    (master business
                        Administration)
    ORACLE DBA SKILLS SELF EVALUATION FORM
    Oracle: SQL and PL/SQL Skills:          
                                       rate
    from
                                  0 = None
    through 5 = Guru
    Creating and maintaining database objects               3
    Store, retrieve, and manipulating data               3
    Create PL/SQL blocks of application code               1
    Familiarity with PL/SQL packages                    1
    Familiarity with PL/SQL tables and records          0
    Calling PL/SQL functions from within SQL statements     0
    Building reusable code                         
         0
    Crafting code that automatically adapts to changes     
         in data structures                         
         0
    Writing SQL inside PL/SQL programs               
         0
    Reading and writing operating system files          3
    Executing host commands and C programs               0
    Issuing database alerts                         
         1
    Analyzing memory utilization in your session          2
    Debugging and tracing program execution               1
    Manipulating raw data and large objects               1
    Building your own packages                    
         1
    Oracle Enterprise Manager Skills:               
                                       rate
    from
                                  0 = None
    through 5 = Guru
    Install Oracle Enterprise Manager                    5
    Administer and monitor Oracle database environments     5
    Oracle Enterprise Manager architecture               3
    Setup a console for your own environment               3
    Implement job and event based system management          3
    Understand the integration of shared administrator
         responsibilities                         
              3
         Tuning Pack                              
         1
    (which comprise Oracle Expert, Tablespace Manager
              and SQL Analyze)
    Diagnostic Pack                              
         0
    (which comprise Oracle Trace and Data Viewer,
         Performance Manager,
    Capacity Planner,and Top Sessions)
    Change Management Pack                         
         0
    (which comprise Database Alter, Capture, Diff,
         Propagate, Quick Change, and Plan Manager)
    Database Administration/ Backup and Recovery Skills:     
                                       rate
    from
                                  0 = None
    through 5 = Guru
    Familiarity with Oracle7 database environments          5
    Familiarity with Oracle8 database environments          5
    Set up, maintain, and troubleshoot database          4
    Plan and implement database backup and recovery
         strategies                              
              4
    Understanding of backup, restore and recovery
         operations                              
              4
    Oracle8 Recovery Manager                         4
    Network Administration Skills:                    
                                       rate from
                                  0 = None
    through 5 = Guru
    Familiarity with Oracle7 Server                    5
    Familiarity with Oracle8 Server                    5
    Familiarity with architecture of Net8               4
    Establishing connections between peers               5
    Client and a server node using various
         naming methods                              
         4
    Configuring middle tier systems                    0
    Familiarity with Names Server                    
         1
    Familiarity with Connection Manager               
         3
    Memory, I/O, physical structure and
    resource contention                         2
    Familiarity with dynamic performance views          4
    Familiarity with initialization parameters          5
    Familiarity with diagnostics and tuning guidelines     3
    Data Modeling and Relational Database Design Skills:     
                                       Arun's
    rate from
                                  0 = None
    through 5 = Guru
    Knowledge with entity-relationship models               2
    Knowledge of normalization and relational           
         database design                              
         1
    Defining business information requirements          3
    Creating entity-relationship models               
         3
    Transforming requirements into an initial
         database designs                         
              3
    Personal Strengths :
              INVOLVEMENT alone gives PERFORMANCE. With my
    spiritual base &
         MOTIVATION, I am confident that I will reach the
    pinnacle
    in the field of ORACLE DBA. I hope my right thinking &
    Hardworking nature will make me successful.
    Current Communication Address
              Address :     16/9, nagendra nagar, velachery
    main road,
                   near jaya hospital, chennai-42
                   chennai, 600042 India
    Tel [home]      :     91-44-2552406
    Tel [office]:     91-44-4839854
    Tel [mobile]:
         Email     :     [email protected],
    [email protected]
    Permanent Address
         Address      :     s/o N.Raghavan, laksminayackan
    patty(po)
                   thevaram(via), theni(dt), pin
    625530
                   laxminayakan patty,
                   625530 India
    Tel      :     91-4454-54739
    Email     :     [email protected], [email protected]
    Personal Particulars
    Date of Birth           :     05 Aug 1971
    Gender                :     Male
    Nationality           :     India
    Marital Status           :     married
         Permanent Residence of     :      India
              Passport Number          :     T465022
              Valid Upto                    Jan 2005
    EDUCATIONAL QUALIFICATION
    COURSE      UNIVERSITY/BOARD           Yr.of PASSING
         CLASS & %
    S.S.L.C      TAMILNADU SECONDARY           MAR 1986
         FIRST 85.40
    H.S.C      TAMILNADU HIGER SECONDARY     APR 1988
         FIRST 68.90
    B.Sc           MADURAI KAMARAJ UNIVERSITY      APR 1991
         FIRST 68.63
    (PHYSICS)      VIVEKANANDA COLLEGE
    M.Sc           MADURAI KAMARAJ UNIVERSITY     APR 1994
         FIRST 70.40
    (PHYSICS)
    BEd           MADURAI KAMARAJ UNIVERSITY      NOV 1995
         SECOND 52.20
    TECHNICAL QUALIFICATION
    COURSE           UNIVERSITY/INSTITUTION           Yr.of
    PASSING %
    PGDMCH#           St.JOSEPH'S COLLEGE           JULY
    1995 59.70
                   BHARATHIDASAN UNIVERSITY
    DPCS*           @ DOE & TC.T.S- NCVT TRADE      SEP 1996
    79.47
                   (AICTE^ APPROVED)
    # POST GRADUATE DIPLOMA IN MICROPROCESSOR AND COMPUTER
    HARDWARE
    * DATA PREPARATION AND COMPUTER HARDWARE
    @ DIRECTORATE OF EMPLOYMENT & TRAINING CRAFTSMEN TRAINING
    SCHEME
    ^ ALL INDIA COUNCIL OF TECHNICAL EDUCATION
    PROFESSIONAL
    TRAINING UNDERGONE
    Completed 'ORACLE DBA' Course at RADIANT SOFTWARE PVT LTD,
    WEST MABALAM,
    CHENNAI -33.
    Language Proficiency :
    Languages -          Proficiency (1=worst - 10=best)
                        Spoken               
         Written
    English          5                    6
    Tamil               9               
         9
    Supplementary
    If and when employed by the company
    Willing to Travel               :          yes
    Willing to be Relocated          :          yes
    Possess Own Transport     :          T465022 Valid
    Upto                    Jan 2005
    Expected Monthly Salary          :     
         Negotiable
    Availability               :     
         Immediately
    =================================================================
    ============

    Sorry, but according to Apple, iTunes Store: All Sales Are Final
    You can avoid accidental purchases.
    From the iTunes menu bar click iTunes / Preferences then select the Parental tab.
    Select:  iTunes Store
    Click OK.

  • Hypervisor: Create Standalone Real-Time Application (Error at deploying: File not found)

    Hello,
    I am using Hypservisor. With "Build Specifications" in the project explore I want to create a standalone real-time application.
    In my first try I only want to print some texts onto the real-time console (HyperTerminal) using the function "RT Debug String.vi". I built the real-time application successfully and got the rtexe-file locally on the windows system. But as I tried to deploy the application to the target system, I got the error: "File not found". Please check the attached file "error.txt" for details.
    I don't understand which file is not found. Or I used "\" as path separators. Is it wrong? I'd appreciate if you'd have any idea of the problem. Thank you very much.
    Regards,
    Scarletice
    Solved!
    Go to Solution.
    Attachments:
    ERROR.txt ‏1 KB
    builds.zip ‏153 KB

    Hello Casey,
    Thank you very much for your reply and your interest in our project. We are using Real-Time Hypervisor for the setup of our test stand. We use the Windows system to show the GUI and the Real-Time system for the real-time machine control and online data storage. We use shared variables and shared memory for the data exchange between the two systems.
    The system works generally quite fine now. But we still have to face new problems at each step forwards. I'm sure, I'll have more questions. I'd appreciate your advices. Thanks sincerely.
    Best regards,
    Scarletice

  • Can I use TNSI Payment gateway in iOS application for making product purchases of Pizza for one of our major client.

    Hello Sir/Madam,
    I am representing my company to ask this quest, your quick response is much appreicated.
    We are making an application for one of our client for Pizza and food product purchased and advertisements. We are trying to implement a payment gateway so users can make purchases using their credit cards. Our client have used TNSI payment gateway on website however we are not sure whether we can use the same TNSI payment service in iOS Application.
    Would you please confirm with us whether apple have an approval for using this Gateway service inside the app. Please let us know ASAP so we can make the integration for completing the app.
    Also it would be real great if we are suggested some approved and valid payment gateways apple have approved for the apps submitted over appstore as this would help us to use the same services firmly wihtout the appstore rejection issue.
    Link for gateway service provider : http://www.tnsi.com/products-services/payments/payment-services/secure-managed-p ayment-solutions/tns-payment-gateways
    Thanks for you kind reply in advance.
    Regards,
    Vicky Dhas
    Solutions Architect | Nano Equipment Pte Ltd.

    What is the appstore rejection issue? It is best not to pay too much attention to what you read on internet media outlets as they are typically full of lies.
    Food is the easy part. You cannot use Apple's payment systems for physical products. You must do that yourself using whatever system you have. Advertising is trickier. You talked about pizza and food and then slipped in that little tidbit. Why?
    The bottom line is that the only people who get their apps rejected are people trying to scam either Apple or Apple's users. Sadly, not enough of them get rejected. You know if you are trying to scam someone or not. If so, then your chances of rejection are higher. When in doubt, consult Apple's In-App Purchase guidelines.

  • CRIO and ni 9234 modules not working or communicating through fpga with accelerometers, fpga connected to real time application which is also connected to shared variables linked to modbus slave

    Hi,
    I have a compact rio which has a 4 way chassis attached to that chassis is three ni9234 modules they are linked using fpga to a real time application then using shared variables in the low speed loop that are linked to a modbus slave to communicate with dcs, the ni 9234's have accelerometers connected to them with iepe ac coupled option on the c modules, my problem is the real time application seems to be running okay even when power loss occurs it restarts with no problem and the fpga writes to the portable hard drive bin files fine but without a accelerometer connected I get low noise readings as soon as I connect a accelerometer to any one of the 10 outputs it just goes to a fixed number (0.03125) as soon as disconnect it again it reverts back to reading noise, I have run a scan on the modules and only get a spike when I connect or disconnect the accelerometer, I have tested the voltage at the pins of the module and I get 22 volts dc which makes it more likely that the hardware is not the problem but a software is maybe causing this to hang-up, I attach project and files for your perusal. I also carried out a new project which in scan mode directly linked the module input to shared variable and the same scenerio again. Help would be much appretiated. 
    Many thanks
    Jason
    Solved!
    Go to Solution.
    Attachments:
    logger 2plusmodbus2.zip ‏679 KB

    Whren using waveform acquisition with the 9234s we recommend the following FPGA and RT template.
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/209114
    it can be extended as a data logger with:
    http://zone.ni.com/devzone/cda/epd/p/id/6388
    or using shared variables combined with scan engine
    http://zone.ni.com/devzone/cda/tut/p/id/9851
    The FPGA in all of these, as well as the RT framework have been used successfully by 1000s of users.  I would recommend giving these a try. 
    Preston Johnson
    Principal Sales Engineer
    Condition Monitoring Systems
    Vibration Analyst III - www.vibinst.org, www.mobiusinstitute.com
    National Instruments
    [email protected]
    www.ni.com/mcm
    www.ni.com/soundandvibration
    www.ni.com/biganalogdata
    512-683-5444

  • HP Pocket Playlist mobile application for windows 8 devices

    Hi,
    does someone know why there is not HP Pocket Playlist mobile application for Windows 8 phones? or when the application will be available in the app store?
    Any information is very welcome.
    Regards,
    Fer

    I am very dissappointed, I am also not able to find an app for my Windows 8.1 phone. Please tell us where we are to get it.

  • FM Radio Application for Windows 8

    I am trying to develop a simple FM Radio Application for Windows 8 phones. I found one class but it says it will not work for devices targeting windows 8. Can some one please help. 
    https://msdn.microsoft.com/en-us/library/windows/apps/microsoft.devices.radio.fmradio(v=vs.105).aspx

    It's been a long time since I last answered an FM radio question so I might be forgetting some details but basically...
    In Windows Phone 7 timeframe the FM radio hardware was part of the requirements but for Windows Phone 8 FM radio hardware was optional and, in fact, the FM Radio drivers were not available until build 8.0.10322.
    I cannot recall if the restriction regarding FMRadio API for Windows Phone 8 targeted applications mentioned in the MSDN documentation, is enforced during submission to the store but I know it is possible to use the APIs in a Windows Phone 8 targeted project
    during development (...requires: ID_CAP_MEDIALIB_AUDIO I believe.)
    Eric Fleck, Windows Store and Windows Phone Developer Support. If you would like to provide feedback or suggestions for future improvements to the Windows Phone SDK please go to http://wpdev.uservoice.com/ where you can post your suggestions and/or cast
    your votes for existing suggestions.

  • IPhone as GPS receiver for Wi-Fi iPad

    As you sadly know there is no such feature, the iphone hotspot provides ONLY internet.
    what other options are available?
    1. buy BT GPS receiver in addition? which one is best?
    2. Apps?
    Please share and let me know how did you overcome this.
    [it's really annoying that apple couldn't overcome this and develop location service sharing between idevices (when using personal hotspot)]

    One solution is a Bad Elf GPS receiver for iPad - http://bad-elf.com/
    They've been making external GPS receivers for iOS devices for several years, and have some good online reviews.  They make BT devices as well as devices to connect via the older 30-pin or lightening connectors.

Maybe you are looking for

  • How do I change my registered e-mail address after I've made a new account, but before I verify my Apple ID?

    I put in the wrong e-mail address when I tried to make a new Apple account. (The wrong e-mail address is not mine.) So, when it sent me an e-mail for me to verify my Apple ID, the e-mail didn't get sent to my e-mail address. Because of this, I can't

  • Will not print anything but Pdf files!

    If I try to print anything at all other than a PDF file from Adobe only(other readers will not even work) very little of the page prints if anything at all. For example, I was trying to print a shipping label off of the website, and the only thing th

  • VOB files

    Hi, I am trying to copy a DVD that A friend made of a gig my band did. What I want to do is make something in either idvd or imovie with a menu and chapters 7 then burn it to disc. My problem is that the files on the disc are things like VIDEO_TS.BUP

  • I have Problem in fetching data from CONTROL BLOCK

    Sir, I am facing problem in fetching data from control block. Asif.

  • Embedded SQL blues

    I have some embedded SQL in a C program in UNIX (PRO*C). I've been trying to make what I thought was a simple enhancement, but I'm totally stumped at why I'm getting the results (or lack thereof) I'm getting. I added the below statement to the code i