oops more time on the arduino.
Posted 06-27-2013 at 06:42 PM by peonuser
Oops forgot to talk about the rs232 last time. have a rs232 to ttl converter, but have not attached it yet. Pinouts were not documented well. May just get a regular shield and take the easy wy out.
Taught the Arduino how to do page scraping from a web page. Going to do a web page on a local server that the arduino can use to send to a monitor via TV.out. Great for a retail application.
Put minibasic on the arduino to play with.
Do not really use flash, but you can still get youtube videos. wrote a quick bash file to automatially download videos when called by cron.
getvids.sh
-------------------------
#================================
#
# Get youtube videos
#
#=================================
# Assignments
# --------------------------------
datafile="vidlist"
#=================================
#
# Data input
#---------------------------------
while read line
do theurl=$line
youtube-dl $theurl -f 34
done < $datafile
vidlist
--------------------------
https://www.youtube.com/watch?v=fCxzA9_kg6s
https://www.youtube.com/watch?v=_LCCGFSMOr4
...
Going to get an hdmi to vga adapter for the Beagleboard black.
Taught the Arduino how to do page scraping from a web page. Going to do a web page on a local server that the arduino can use to send to a monitor via TV.out. Great for a retail application.
Put minibasic on the arduino to play with.
Do not really use flash, but you can still get youtube videos. wrote a quick bash file to automatially download videos when called by cron.
getvids.sh
-------------------------
#================================
#
# Get youtube videos
#
#=================================
# Assignments
# --------------------------------
datafile="vidlist"
#=================================
#
# Data input
#---------------------------------
while read line
do theurl=$line
youtube-dl $theurl -f 34
done < $datafile
vidlist
--------------------------
https://www.youtube.com/watch?v=fCxzA9_kg6s
https://www.youtube.com/watch?v=_LCCGFSMOr4
...
Going to get an hdmi to vga adapter for the Beagleboard black.
Total Comments 0