I've got the labview vi written to read my IMU data from a serial port in COM1 and it displays onto the table on the front panel. I'm having trouble getting this data onto an excel spreadshee​t. Any ideas?

I've got the labview vi written to read my IMU data from a serial port in COM1 and it displays onto the table on the front panel. I'm having trouble getting this data onto an excel spreadsheet. Any ideas? Right now my data will collect one reading instead of continuously reading my IMU which displays data in a continuous stream.
Thanks
Attachments:
Read_IMU_Drew.vi ‏21 KB

Hi
Your vi is in 2009 version, which i am unable to open in 8.6
However, if you want your data to be saved in excel sheet, here is the VI
Somil Gautam
Think Weird
Attachments:
save to excel.vi ‏12 KB

Similar Messages

  • Since the Version 20.0 update when starting firefox I have frequently got the error message "firefox is having trouble your windows and tabs" .

    Since the version 20.0 update when starting firefox I have frequently got the error message "firefox is having trouble recovering your windows and tabs" This has not occurred with previous versions. If I click on the box "restore" and close firefox the problem reoccurs if I click close I lose the bookmark sidebar. I am so sick and tired of these frequent and buggy updates (every one since 17.0 have caused norton 360 to stop detecting tracking cookies for several weeks and or broken the norton toolbar) that I will uninstall firefox and switch to another browser if this does not change.

    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes
    If you have submitted crash reports then please post the IDs of one or more crash reports that have this format:
    *bp-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    *You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter
    *https://support.mozilla.org/kb/Mozilla+Crash+Reporter

  • TS3276 Mail version 4.6 on an imac 10.6.8, I have an email that keeps resending itself!! I cannot stop it, my friend had to block me to keep from getting this 10 times a day... any ideas?

    Mail version 4.6 on an imac 10.6.8, I have an email that keeps resending itself!! I cannot stop it, my friend had to block me to keep from getting this 10 times a day... any ideas?

    fomamac2guy wrote:
    Now, I cannot open PDF files that are contained within a website, i.e. a lunch menu that is on a restaurant website.
    Does this help with Firefox?

  • Just synced my iphone 3GS and now half of my apps won't open on my iphone. I tried the reboot but it didn't help. This is version 4.3.2 . Any ideas?

    Just synced my iphone 3GS and now many of my app's won't open on my phone.  This was with version 4.3.2. I tried a reboot on my iphone but that didn't help. Any ideas?

    this happened to me with my iPhone 4. I researched the problem and found this :
    "The reason this happens is because every time a downloaded app is opened it checks for your itunes password for validation that you are authorized to open that app (as it may contain personal info). From time to time the iphone 'forgets' your itunes password. You can fix the missing password by syncing the iphone with itunes or downloading an app from the app store and entering your password that way.”
    And to fix it, all I did was download a new app, or delete a current one, I used Facebook, and re-download it.
    Hope this helps

  • I am having trouble deleting mail,when I do it comes back.any ideas on how to resolve this issue?

    When I delete mail or put it into a folder and close the program and go back to the program,everything I did is still in the Inbox.Any ideas on how to fix this issue would be greatly appreciated......

    I reckon it's about how you setup your mail, POP3 or IMAP. Could be mistaken tough

  • I'm having trouble getting this started.. any help?

    Yesterday I bought a book -- Head First JSP's and Servlets because I wanted to learn about java could be used in web development. However I pretty much ran into problems from the first page. I seemed to fix most of them, But now a program that I made following the book's step-by-step instructions, doesn't appear on my http://localhost:8080/, instead I get told that the requested resource is not available.
    What the program does is very simply display the date on the webpage, like i sad I'm just beginning. btw, I'm using tomcat5.5 as my server software, also this problem is more about setting it up properly and not so much about programming. Okay so the book told me to make the directory like this: tomcat5.5 -> webapps -> ch1 -> WEB-INF -> classes and in the WEB-INF folder I put web.xml (which is at the bottom of this post) and in the classes folder I put Ch1Servlet.class(the java file for this is at the bottom). Now this is the part I don't get. The book tells me to go to http://localhost:8080/ch1/Serv1 even though there are no files/folders that have the name Serv1. So this didn't work, and a couple others like/ch1/WEB-INF/classes/Ch1Servlet.class and /ch1/WEB-INF/web.xml. I was up to 4:45 in the morning last night trying to fix this; any help would be GREATLY appreciated.
    web.xml:
    <?xml version="1.0" encoding="IISO-8851-1" ?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
         http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">
         <servlet>
              <servlet-name>Chapter1 Servlet</servlet-name>
              <servlet-class>Ch1Servlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>Chapter1 Servlet</servlet-name>
              <url-pattern>/Serv1</url-pattern>
         </servlet-mapping>
    </web-app>Ch1Servlet.java
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Ch1Servlet extends HttpServlet {
         public void doGet(HttpServletRequest request, HttpServletResponse response) {
              try {
                   PrintWriter out = response.getWriter();
                   java.util.Date today = new java.util.Date();
                   out.println("<html>" + "<body>" + "<h1 align=center>HF\'s Chapter1 Servlet</h1>" + "<br>" + today + "</body>" + "</html>");
              } catch (IOException e) {
                   System.exit(1);
    }

    asdfjava-er wrote:
    The book that I'm using said it wasn't necessary for this because it's supposed to just make sure everything is working properly--which it's not.OK, if you want to ignore my advice, so be it, but please don't complain that it is not going to work without even trying it yourself.
    asdfjava-er wrote:
    Now this is the part I don't get. The book tells me to go to http://localhost:8080/ch1/Serv1 even though there are no files/folders that have the name Serv1.
    Do you understand what the <servlet-mapping> declaration in the web.xml means? It is roughly just saying the appserver that it should port all requests on /Serv1 to the mentioned servlet.
    a couple others like/ch1/WEB-INF/classes/Ch1Servlet.class and /ch1/WEB-INF/web.xml. The WEB-INF folder is not public accessible, so forget about that part.
    "Resource not found" simply means that either the URL is wrong (case counts!) or that the resource is actually not there. I.e. not compiled, not deployed, not loaded, etcetera. Reading the appserver's startup logs might also help.

  • TS1398 Upgraded to iOS6 and the WiFi isn't working. Never had this problem prior to upgrading...any ideas?

    Just upgraded to iOS 6 and the Wifi has gone nuts and no longer connects

    Just upgraded to iOS 6 and the Wifi has gone nuts and no longer connects

  • Iam having trouble getting on Find my Friends.Do you have any suggestions

    I am unable to get on Find my friends even tho I have used it with no problems until now. Do you have any suggestions?

    Hello James,
    Thank you for the question.  I recommend reviewing the following article when you are not able to access Find My Friends:
    iCloud: Troubleshooting Find My Friends
    http://support.apple.com/kb/TS4008
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Having trouble getting web addresses to break in footnotes. Any suggestions?

    I'm doing a book that refers to multiple blog pages throughout. In the footnotes, where the blog addresses are given, InDesign is really spacing out the lines and breaking too soon, especially after slashes followed by words with hyphens between them. It's quite obvious that one or two of the words, with their hyphens, would fit on the line above. I've tried adding space bars after hyphens but it won't force the words preceding my entered space up. I've tried using discretionary hyphens in places, and that didn't work either. The only way I can do it is to put soft returns in and I'm not sure I like the idea of that. Any suggestions?

    Try setting the paragraph style for the footnotes to use one of the Single Line composers instead of the Paragraph Composer, and add your discretionary breaks where you'd like them to happen.

  • Apple tv is not working: "an error occurred loading this content. Try again later".  Any idea?

    My apple tv is not working.  I have rented 4 movies and I cannot open any of them.  My Apple TV is located in USA.  Anywy I am traveling at the moment outside US, but cannot watch my rented movies.  I get the following error message: "an error occurred loading this content. Try again later".  Any idea?  What is the solution for this issue?

    I have 4-5 mbps for Downloads.  It works fine when opening websites and downloading large files from the Internet.  I have set-up my IP to "automatically" as you suggested, even though I believe this was the default setting.
    I changed the resolution in Settings > Itunes Store > Video Resolution from 1080p to 720p.  Then I rented again "Salmon Fishing in the Yemen", (but now using HD 720p) and I get exactly the same error. 
    Then I changed it to Standard Definition and now is working.  Basically what I have found out is that if I rent movies in HD 1080p or HD 720p it will simply not work. 
    I believe 4-5 mbps is very fast internet connection, so the errors above should not be appearing.
    Feedback for Apple TV developers is to show estimated time for full downloads when using 1080p or 720p so the user can understand what is going on. Very frustrating as I just bought the Apple TV for watching HD movies. I have a 55" HD Sony Bravia tv ready to be used... !!! 

  • HT3275 For the past several days, I have been getting this message during backups: Time Machine could not complete the back up.  The backup disk image "Volumes/Data/iMac.sparsebundle" could not be accessed (error-1).

    For the past several days, I have been getting this message during backups:
    Time Machine could not complete the back up.  The backup disk image "Volumes/Data/bhoppy2's iMac.sparsebundle" could not be accessed (error-1).  When I click on the 'help' icon on the message, it reverts to a blank page, and I cannot find anything online regarding the term 'sparsebundle.'  In addition, I cannot access previous backups any longer. 
    Help?

    See C17 in Time Machine Troubleshooting by Time Machine guru Pondini:
    http://pondini.org/TM/Troubleshooting.html

  • I keep getting an error when trying to update an app- cannot connect to store. I logged out from my account and tried to log back in and got the same error. I am doing all this from my phone since I no longer own a personal computer (only work)

    I keep getting an error when trying to update an app- cannot connect to store. I logged out from my account and tried to log back in and got the same error. I am doing all this from my phone since I no longer own a personal computer (only work) since I use iCloud and I tunes match

    YAY!!! Saved it in my Mac's Firefox Bookmarks for easy future access!
    Hope you are having a lovely afternoon today! I'm about ready to go bobo....I have an early meeting, and I don't want to oversleep! The nice part is that I work remotely, so I only have to wake up 15 minutes or so before the meeting.... I don't even use an alarm clock anymore (really, my iPhone alarm, which is much more pleasant), unless I have to get up at 6:30 or something....
    TMI?
    GB

  • Hi i am new to labview. i want to extract data from a text file and display it on the front panel. how do i proceed??

    Hi i am new to labview
    I want to extract data from a text file and display it on the front panel.
    How do i proceed??
    I have attached a file for your brief idea...
    Attachments:
    extract.jpg ‏3797 KB

    RoopeshV wrote:
    Hi,
    The below code shows how to read from txt file and display in the perticular fields.
    Why have you used waveform?
    Regards,
    Roopesh
    There are so many things wrong with this VI, I'm not even sure where to start.
    Hard-coding paths that point to your user folder on the block diagram. What if somebody else tries to run it? They'll get an error. What if somebody tries to run this on Windows 7? They'll get an error. What if somebody tries to run this on a Mac or Linux? They'll get an error.
    Not using Read From Spreadsheet File.
    Use of local variables to populate an array.
    Cannot insert values into an empty array.
    What if there's a line missing from the text file? Now your data will not line up. Your case structure does handle this.
    Also, how does this answer the poster's question?

  • I am having trouble getting a numbers spreadsheet to hold different formats in the same column.  A column with a date formatted heading will not convert to $ for the cells below.   Any suggestions would help.

    I am having trouble getting a numbers spreadsheet to hold different formats in the same column.  A column with a date formatted heading will not convert to $ for the cells below.   Any suggestions would help.

    Hi Wayne,
    Thank you for this response.  I have tried this but when I start enterring $ amounts some, such as $6.00, go in OK others such as $4.00 appear as a date ie 4 Oct 12.  
    Kind regards
    Paul

  • I get lots of missed calls on my iPhone 5. Caller's first attempt goes straight to my voicemail but the second attempt gets through. I have proved this with my home landline too. Any ideas?

    I get lots of missed calls on my iPhone 5. Caller's first attempt goes straight to my voicemail but the second attempt gets through. I have proved this with my home landline too. Any ideas?

    First thing you need to check is if you have do not disturb on to find this out got to settings-do not disturb and tap on it and turn it off this should work

Maybe you are looking for

  • [svn:fx-trunk] 7700: Integrated TLF build 450.

    Revision: 7700 Author:   [email protected] Date:     2009-06-09 21:31:13 -0700 (Tue, 09 Jun 2009) Log Message: Integrated TLF build 450. This integration required no changes to framework code. From TLF's ReleaseNotes.txt: Build 450 Fix bug 330941 Bac

  • Installment Loans - Over Payment

    Hello all, The requirement from the business id as follows: If a customer makes an over payment on an installment loan (tcode EK25), then the payment should be applied only to the principal amount. It should not be applied to the interest document. T

  • For cheque issued to settle on outstanding invoice

    Hi, The relization status of a cheque in the vendor module (for cheque issued to settle an outstanding invoice)? Regards, Murthy

  • My iPhone 3GS battery is running down too quickly

    In the last few days, my iPhone has started running down *very* quickly. I have been running iOS 6.1 for ages without any problems. Could this all of a sudden cause problems like this? I have disabled mobile data and 3GS and just left the clock, cale

  • -3 error when converting music

    I keep getting a -3 error when converting m4a into another AAC/mp3 Does anyone know what this is? Or why it is happening? It's using itunes10.6 Thanks