Difference between revisions of "User:Mysli"
From eLinux.org
(→About Myself) |
(→About Myself) |
||
| Line 1: | Line 1: | ||
===About Myself=== | ===About Myself=== | ||
| − | I'm a German [[BeagleBoard]] and [http://wiki.openmoko.org/wiki/Neo_FreeRunner | + | I'm a German [[BeagleBoard]] and [http://wiki.openmoko.org/wiki/Neo_FreeRunner Freerunner/OpenMoko] user with some Linux experience. My favorit coding language is JAVA. Unfortunally I love the electronics and so I have to waste my time.. . |
==My code snippeds== | ==My code snippeds== | ||
* Printout timestamp and USB input from [[BeagleBoard_with_Arduino|Arduino]] board: | * Printout timestamp and USB input from [[BeagleBoard_with_Arduino|Arduino]] board: | ||
cat /dev/ttyUSB0 | awk '{ print strftime("%Y-%m-%d %H:%M:%S"), $0; }' | cat /dev/ttyUSB0 | awk '{ print strftime("%Y-%m-%d %H:%M:%S"), $0; }' | ||
Latest revision as of 22:41, 19 January 2012
About Myself
I'm a German BeagleBoard and Freerunner/OpenMoko user with some Linux experience. My favorit coding language is JAVA. Unfortunally I love the electronics and so I have to waste my time.. .
My code snippeds
- Printout timestamp and USB input from Arduino board:
cat /dev/ttyUSB0 | awk '{ print strftime("%Y-%m-%d %H:%M:%S"), $0; }'