diff --git a/content/terminimal-theme.md b/content/terminimal-theme.md deleted file mode 100644 index deeb4e3..0000000 --- a/content/terminimal-theme.md +++ /dev/null @@ -1,98 +0,0 @@ -+++ -title = "Terminimal Theme for Zola" -date = 2019-02-04 - -[taxonomies] -tags = ["zola", "theme", "showcase"] -+++ - -Welcome to Terminimal! This is a theme showcase post. - -Code block (using "boron" theme): - -```python -#!/usr/bin/python3 - -class HelloPrinter: - def __init__(self, thing): - self.thing = thing - - def __call__(self): - print(f"Hello, {self.thing}!") - - -printer = HelloPrinter("World") -printer() - -# prints: Hello, World! -``` - -Inline code: `print("Hello world!")`. - -Basic typography: - -*Italic text*. **Bold text**. _**Italic bold**_. Link: [click me](#) - -# Header 1 -## Header 2 -### Header 3 -#### Header 4 - -Quote: - -> "Theory is when you know everything but nothing works. -Practice is when everything works but no one knows why. -In our lab, theory and practice are combined: nothing works and no one knows why." - -Lists: - -- A -- B -- CDEF - - -1. One -2. Two -3. Three - -Horizontal line: - ---- - -This is where the post summary ends. - - - -The second part follows here. - -## Shortcodes - -`figure` shortcode: - -``` -figure(src="http://rustacean.net/assets/rustacean-flat-gesture.png", - style="width: 25%;", - position="center" - caption_position="left", - caption="Ferris, the (unofficial) Rust mascot" - caption_style="font-weight: bold; font-style: italic;") -``` - -{{ figure(src="http://rustacean.net/assets/rustacean-flat-gesture.png", - style="width: 25%;", - position="center", - caption_position="left", - caption="Ferris, the (unofficial) Rust mascot", - caption_style="font-weight: bold; font-style: italic;") }} - ---- - -`image` shortcode: - -``` -image(src="https://upload.wikimedia.org/wikipedia/commons/3/35/Tux.svg", - position="left") -``` - -{{ image(src="https://upload.wikimedia.org/wikipedia/commons/3/35/Tux.svg", - position="left") }} diff --git a/content/universal-remote-part3.md b/content/universal-remote-part3.md new file mode 100644 index 0000000..66ad22c --- /dev/null +++ b/content/universal-remote-part3.md @@ -0,0 +1,19 @@ ++++ +title = "Universal Remote - Part III" +date = 2014-12-18 + +[taxonomies] +tags = ["RaspberryPi", "UniversalRemote"] ++++ + +The only items I didn’t purchase online were the supplies for soldering and wiring. I went with the ECG 20 Watt Miniature Corded Soldering Iron, Sn60/Pb40 Solder and 22AWG Solid Copper Wire. + +{{ image(src="https://raw.githubusercontent.com/kylejcarlton/zola-theme-terminimal/master/img/SolderingSupplies.png", + position="left") }} + +With all the components and tools needed, the first step was assembling the Adafruit Prototyping Pi Plate Kit following [these instructions](https://learn.adafruit.com/adafruit-prototyping-pi-plate/solder-it). Once complete I built [the circuit for the IR receiver and transmitter](https://upverter.com/design/alexbain/f24516375cfae8b9/open-source-universal-remote/#/). With the assembly complete the Prototyping Pi Plate connects to the Raspberry Pi via the GPIO pins. In addition to referencing the circuit diagram [these high resolution pictures from alexba.in](http://alexba.in/blog/2013/06/08/open-source-universal-remote-parts-and-pictures/) were very useful. + +{{ image(src="https://raw.githubusercontent.com/kylejcarlton/zola-theme-terminimal/master/img/UniversalRemoteHardwareAssembled.png", + position="left") }} + +With the hardware assembled the next step is to install [Raspbian](https://www.raspberrypi.com/software/) as the OS on the SD card and the application [LIRC](http://www.lirc.org/) for controlling the hardware to test functionality. \ No newline at end of file diff --git a/img/SolderingSupplies.png b/img/SolderingSupplies.png new file mode 100644 index 0000000..4562ed0 Binary files /dev/null and b/img/SolderingSupplies.png differ diff --git a/img/UniversalRemoteHardwareAssembled.png b/img/UniversalRemoteHardwareAssembled.png new file mode 100644 index 0000000..ac4fc74 Binary files /dev/null and b/img/UniversalRemoteHardwareAssembled.png differ