Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michmich/microviewsecondscreen
Use your MicroView as you Computer's Second Screen!
https://github.com/michmich/microviewsecondscreen
Last synced: 2 months ago
JSON representation
Use your MicroView as you Computer's Second Screen!
- Host: GitHub
- URL: https://github.com/michmich/microviewsecondscreen
- Owner: MichMich
- Created: 2014-11-08T19:49:28.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-08T20:25:07.000Z (about 10 years ago)
- Last Synced: 2024-10-14T10:22:03.718Z (3 months ago)
- Language: Arduino
- Homepage: http://michaelteeuw.nl/post/102115021017/a-micro-second-screen
- Size: 125 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MicroViewSecondScreen
=====================Use your MicroView as your Computer's Second Screen!
More info about this project can be found [here](http://michaelteeuw.nl/post/102115021017/a-micro-second-screen).
##Sending strings to the MicroView.
With the Arduino connected to your Mac, It's pretty simple to send any string to your Tiny Second Screen:
echo 'Hello World' >> /dev/tty.usbserial-DA00U91G
In this case, the `/dev/tty.usbserial-DA00U91G` part is the path name to the serial port. Check your Arduino IDE to figure out the right serial port.With this in mind, we can write small Bash script to display the time ...
while true; do echo `uptime` >> /dev/tty.usbserial-DA00U91G; sleep 5; done;
... your Mac's uptime ...
while true; do echo `uptime` >> /dev/tty.usbserial-DA00U91G; sleep 5; done;
... or even the most recent #arduino tweets!while true; do curl http://michmich.com/lasttweet/?q=%23arduino\&num=5 >> /dev/tty.usbserial-DA00U91G; sleep 20; done;
##Contribute.
Pull requests are more than welcome! Try to keep the project simple, clean and well documentated.
Any suggestions for using this second screen? Fork this README.me and add it ... :)