ruby hardware programming
任意の名前のフォルダを作成して、そのフォルダの中に入ります。
mkdir first_project
cd first_project
bundle init
を実行して Gemfile
を作成します。
以下のように修正します。
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem 'pi_piper'
pi_piper
は Raspberry Pi のGPIOをRubyから制御できるGemです。
Gem をインストールします。
bundle install --path vendor/bundle
./template
に プロジェクト作成で説明した手順を実施済みのフォルダです。
このフォルダをコピーして任意の場所に配置して使うと手間を省けます。
cp ./template ~/hardware_programming/ninino_project