Results 1 to 5 of 5

Thread: Arduino serial ouput to file?

Threaded View

  1. #1
    Join Date
    Nov 2008
    Location
    Maine
    Beans
    1,126
    Distro
    Ubuntu 10.04 Lucid Lynx

    Question Arduino serial ouput to file?

    Hi all,
    Yesterday I started using the Arduino. I'm happy at easy everything seems to be. What I haven't figured out yet is how to send the serial output to a file. The device is mounted at /dev/ttyACM0
    Code:
    void setup()                    
    {
      Serial.begin(9600);              // set up Serial library at 9600 bps
      Serial.println("Hello world!");  // prints hello with ending line break 
    }
    void loop()                       
    {
                                      // do nothing!
    }
    For example, how could I send that to a file on my computer?
    Last edited by conradin; October 24th, 2012 at 03:11 PM. Reason: / typo
    ~Conradin~

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •