I am new to arduino yun, so please bear with me on this one. I want to log the processed data from some sensor to a data sheet (excel) on my computer which is in the same network as arduino.
Through temboo I was able to log the data on Google spreadsheet, but I can't find a way to do it on my local computer. Is there any function where I can send the data to a specific IP address on the local network?
If you want to drive it from the sketch side, you can use YunClient to connect a TCP stream to a specific port on a remote computer. Once connected, you can read/write through the port just like a serial port. You will, of course, have to write some corresponding code on the destination system to listen for a connection and process that side of the connection.
Another option is HttpClient which will let you access a URL on the remote computer. In this case, you will have to set up some sort of web service on that computer to listen for that URL.
That's two ideas off the top of my head. Both ideas (and more) can also be done from the Linux side of the Yun, probably easier and more efficiently.