From 7ee89bd2fa63ba123b0d0c0e029e96b785d89c7b Mon Sep 17 00:00:00 2001 From: kylejcarlton Date: Sun, 28 Nov 2021 15:31:31 -0600 Subject: [PATCH] updating posts --- ...h-pi-part1.md => mining-btc-with-pi-part1.md} | 4 ++-- ...h-pi-part2.md => mining-btc-with-pi-part2.md} | 4 ++-- content/universal-remote-part4.md | 16 +++++++++++++++- 3 files changed, 19 insertions(+), 5 deletions(-) rename content/{mining-bitcoin-with-pi-part1.md => mining-btc-with-pi-part1.md} (96%) rename content/{mining-bitcoin-with-pi-part2.md => mining-btc-with-pi-part2.md} (95%) diff --git a/content/mining-bitcoin-with-pi-part1.md b/content/mining-btc-with-pi-part1.md similarity index 96% rename from content/mining-bitcoin-with-pi-part1.md rename to content/mining-btc-with-pi-part1.md index 4c59529..60fd3c0 100644 --- a/content/mining-bitcoin-with-pi-part1.md +++ b/content/mining-btc-with-pi-part1.md @@ -1,9 +1,9 @@ +++ -title = "Mining Bitcoin with Pi - Part I" +title = "Mining BTC with Pi - Part I" date = 2015-08-15 [taxonomies] -tags = ["RaspberryPi", "Bitcoin"] +tags = ["RaspberryPi", "BTC"] +++ I first heard about Bitcoin in early 2013 and decided the best way to learn about it would be to start mining. If you don’t know anything about Bitcoin, check out the video below and [bitcoin.org](https://bitcoin.org/en/) for more. diff --git a/content/mining-bitcoin-with-pi-part2.md b/content/mining-btc-with-pi-part2.md similarity index 95% rename from content/mining-bitcoin-with-pi-part2.md rename to content/mining-btc-with-pi-part2.md index eaffe67..4edcd01 100644 --- a/content/mining-bitcoin-with-pi-part2.md +++ b/content/mining-btc-with-pi-part2.md @@ -1,9 +1,9 @@ +++ -title = "Mining Bitcoin with Pi - Part II" +title = "Mining BTC with Pi - Part II" date = 2015-10-16 [taxonomies] -tags = ["RaspberryPi", "Bitcoin"] +tags = ["RaspberryPi", "BTC"] +++ I mined a total of 0.24359921 Bitcoin (BTC) with the Raspberry Pi and Butterfly Labs 5 GH/s miner from December 17, 2013 - July 29, 2015. diff --git a/content/universal-remote-part4.md b/content/universal-remote-part4.md index 484620e..0e0aaf7 100644 --- a/content/universal-remote-part4.md +++ b/content/universal-remote-part4.md @@ -10,7 +10,7 @@ tags = ["RaspberryPi", "UniversalRemote"] With the hardware built the next step is getting the Raspberry Pi up and running and installing [LIRC](http://www.lirc.org/). [Alexba.in](http://alexba.in/) has a comprehensive post for both of these things: [RaspberryPi Quickstart](http://alexba.in/blog/2013/01/04/raspberrypi-quickstart/) and [Setting Up LIRC on the RaspberryPi](http://alexba.in/blog/2013/01/06/setting-up-lirc-on-the-raspberrypi/). -I discovered and modified a few things along the way, so here’s what I did. +I discovered and modified a few things along the way, so here’s what I did: - Download the latest [Raspbian Image](https://www.raspberrypi.org/downloads/raspbian/) and follow their [Installation Guide](https://www.raspberrypi.org/documentation/installation/installing-images/README.md). - Network the Pi over wired Ethernet using RJ45 connector. @@ -21,6 +21,7 @@ Since I’d like to connect over WiFi I’ve added a [Belkin USB F7D2101](https: {{ image(src="https://raw.githubusercontent.com/kylejcarlton/zola-theme-terminimal/master/img/RemoteBuildWirelessBT.png", position="left") }} - With the Pi temporarily connected by Ethernet cable, I [set up the wireless connection via the command line](https://www.raspberrypi.com/documentation/computers/configuration.html) over SSH. + - The following commands update the Software and Firmware then sync the Time with a source on the Internet: ```bash @@ -33,4 +34,17 @@ sudo rpi-update sudo apt-get install ntpdate sudo ntpdate -u ntp.ubuntu.com +``` + +- Next install [LIRC](http://www.lirc.org/) +```bash +sudo apt-get install lirc +``` +- Modify **/etc/modules** and **/etc/lirc/hardware.conf** for the specific hardware being used: + + +_**/etc/modules**_ +```bash +lirc_dev +lirc_rpi gpio_in_pin=23 gpio_out_pin=22 ``` \ No newline at end of file