download galileo-1.2.img from <galileodebian.sourceforge.net>
used rpi-sd-card-builder to dd the image to the card.
something like:
screen /dev/tty.PL2303-0000103D 115200
| #include <MicroView.h> | |
| const int PLOT_PIN = 0; | |
| int readingHistory[64]; | |
| int currentIndex = 0; | |
| void setup() { | |
| // put your setup code here, to run once: | |
| uView.begin(); |
The Intel Galileo is a great little development/experiments board with an Intel Quark 32-bit x86 processor. We had some of these hanging around our office and I was inspired to make some computer music with it - so here's my process for getting Pure Data up and running.
Here's the things I needed:
| \documentclass[a4paper,12pt,oldfontcommands]{memoir} | |
| \PassOptionsToPackage{hyphens}{url} | |
| \usepackage{url} | |
| \usepackage{hyperref} | |
| \usepackage{doi} | |
| \usepackage{graphicx} | |
| \usepackage{amssymb} | |
| \usepackage{epstopdf} | |
| \usepackage{wrapfig} | |
| \usepackage{natbib} |
| #!/bin/bash | |
| # This one-liner script plays a video in an infinite loop on a raspberry pi | |
| # for a video-art exhibition. | |
| # It was written for a video in portrait orientation so the video is rotated 270 | |
| # to use up the whole screen (which was also rotated). | |
| # Charles Martin, July 2016 | |
| omxplayer -o local --loop /home/pi/video.mp4 --orientation 270 |
| TAGUE: | |
| Trust too trouble it: I will have your honour | |
| And threst words, will not still bear the gods and cannot speak, | |
| And now and take the which thy means to have him. | |
| POMPEY: | |
| If this be? | |
| Here comes your tongue, sir, a strange o' the stand? | |
| TRANIO: |
| \documentclass[12pt]{article} | |
| \usepackage{geometry} | |
| \geometry{a4paper} | |
| \usepackage[usenames,dvipsnames]{color} | |
| \usepackage{hyperref} | |
| \hypersetup{ | |
| colorlinks, | |
| citecolor=Violet, | |
| linkcolor=Red, |
| %% Pandoc template for creating NIME papers | |
| %% Adapted from NIME paper template and Pandoc latex template. | |
| \documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$lang$,$endif$$if(papersize)$$papersize$,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} | |
| \usepackage{hyperref} | |
| \makeatletter | |
| \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} | |
| \def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi} | |
| \makeatother |
title: 'A Very Well-Written NIME Paper' author:
| DOCNAME=nime-paper-input.md | |
| OUTNAME=rendered-output | |
| REFSFILE=references.bib | |
| ARGS=--bibliography $(REFSFILE) | |
| nime: | |
| pandoc --template=nime.latex --self-contained --natbib --filter pandoc-fignos $(DOCNAME) -o $(OUTNAME).tex | |
| sed -i '.bak' 's/\citep{/\cite{/g' $(OUTNAME).tex | |
| pdflatex $(OUTNAME) | |
| bibtex $(OUTNAME) |