If you'd like to customize your keyboard's layout or functionality, the most robust and flexible option is to use the Arduino IDE.
If you'd like to customize your keyboard's layout or functionality, the most robust and flexible option is to use the Arduino IDE.
Arduino is one of the world's most widely used (and user friendly) platforms for programming "embedded" devices like the chip inside your keyboard.
Arduino is one of the world's most widely used (and user friendly) platforms for programming "embedded" devices like the chip inside your keyboard.
The first step is to install the Arduino "Integrated development environment" or IDE:
# Set up the Arduino IDE
Arduino's designers made it to be accessible to people at all skill levels, and Kaleidoscope is built on top of the Arduino platform because we share that goal. The easiest way to customize your keyboard's firmware is to use the Arduino IDE. Even if you expect to use the command line to compile your firmware, you'll still need to install Arduino, as they provide the compilers and libraries Kaleidoscope needs to work.
Using the IDE is is the easiest process for folks who are new to Arduino, or to programming generally. If you follow the instructions below step by step you should be fine. :-)
The right way to install Arduino is a little bit different depending on what operating system you use.
* [Install Arduino on macOS](#Arduino-macOS)
* [Install Arduino on macOS](#Arduino-macOS)
* [Install Arduino on Linux](#Arduino-Linux)
* [Install Arduino on Linux](#Arduino-Linux)
* [Install Arduino on Windows](#Arduino-Windows)
* [Install Arduino on Windows 10](#Arduino-Windows)
* [Install Arduino on FreeBSD](#Arduino-FreeBSD)
* [Install Arduino on FreeBSD](#Arduino-FreeBSD)
## <aname="Arduino-macOS"/>Install Arduino on macOS
## <aname="Arduino-macOS"/>Install Arduino on macOS
The Arduino system has been designed to be accessible to people at all skill levels, and Keyboardio is built on top of the Arduino platform because we share that goal. There are many ways to set up your system to work with the Keyboardio firmware, the most typical is to use the Arduino Integrated Development Environment (IDE); an application that gives some visual context to the code you want to send to your Arduino device. This is the easiest process for folks who are new to Arduino, or to programming generally. If you follow the instructions below step by step you should be fine. :-)
<h4>Step One: Set up the Arduino IDE</h4>
1. Download the Arduino IDE install package from https://www.arduino.cc/en/Main/Software
1. Download the Arduino IDE install package from https://www.arduino.cc/en/Main/Software
As of this writing, the latest version is v1.8.8, which you can download from https://www.arduino.cc/download_handler.php?f=/arduino-1.8.8-macosx.zip
As of this writing, the latest version is v1.8.13, which you can download from https://www.arduino.cc/download_handler.php?f=/arduino-1.8.13-macosx.zip
2. Double-click "arduino-1.8.x-macos.zip" to uncompress the Arduino IDE.
2. Double-click "arduino-1.8.13-macos.zip" to uncompress the Arduino IDE.
3. Move Arduino.app from your `Downloads` folder to your Applications folder.
3. Move Arduino.app from your `Downloads` folder to your Applications folder.
4. Double-click on Arduino.app to start it.
4. Double-click on Arduino.app to start it.
Next step: [Add keyboard support to Arduino](Add-keyboard-support-to-Arduino)
Next step: [Add keyboard support to Arduino](#Add-keyboard-support-to-Arduino)
# <aname="Arduino-Linux"/>Install on Linux
# <aname="Arduino-Linux"/>Install on Linux
The Arduino system has been designed to be accessible to people at all skill levels, and Keyboardio is built on top of the Arduino platform because we share that goal. There are many ways to set up your system to work with the Keyboardio firmware, the most typical is to use the Arduino Integrated Development Environment (IDE); an application that gives some visual context to the code you want to send to your Arduino device. This is the easiest process for folks who are new to Arduino, or to programming generally. If you follow the instructions below step by step you should be fine. :-)
1. Install version 1.8.13 or newer of the Arduino IDE from http://arduino.cc/download. Unfortunately, the version packaged in Ubuntu is too ancient to support Arduino's new way of doing 3rd-party hardware.
<h4>Step One: Set up the Arduino IDE</h4>
1. Install version 1.8.8 or newer of the Arduino IDE from http://arduino.cc/download. Unfortunately, the version packaged in Ubuntu is too ancient to support Arduino's new way of doing 3rd-party hardware.
2. Assuming you're untarring in the download directory:
2. Assuming you're untarring in the download directory:
```sh
```sh
$ cd ~/Downloads
$ cd ~/Downloads
$ tar xvf arduino-1.8.8-linux64.tar.xz
$ tar xvf arduino-1.8.13-linux64.tar.xz
$ sudo mv arduino-1.8.8 /usr/local/arduino
$ sudo mv arduino-1.8.13 /usr/local/arduino
$ cd /usr/local/arduino
$ cd /usr/local/arduino
$ sudo ./install.sh
$ sudo ./install.sh
```
```
@ -86,55 +88,44 @@ The Arduino system has been designed to be accessible to people at all skill lev
export ARDUINO_PATH=/usr/local/arduino
export ARDUINO_PATH=/usr/local/arduino
```
```
Next step: [Add keyboard support to Arduino](Add-keyboard-support-to-Arduino)
Next step: [Add keyboard support to Arduino](#Add-keyboard-support-to-Arduino)
# <aname="Arduino-Windows"/>Install on Windows
# <aname="Arduino-Windows"/>Install on Windows 10
The Arduino system has been designed to be accessible to people at all skill levels, and Keyboardio is built on top of the Arduino platform because we share that goal. There are many ways to set up your system to work with the Keyboardio firmware, the most typical is to use the Arduino Integrated Development Environment (IDE); an application that gives some visual context to the code you want to send to your Arduino device. This is the easiest process for folks who are new to Arduino, or to programming generally. If you follow the instructions below step by step you should be fine. :-)
_**Note:** This tutorial has been written using Windows 10._
_**Note:** This tutorial has been written using Windows 10._
<h4>Prerequisite: Install USB Driver (Win 7, 8, & 8.1)</h4>
For Windows 7, 8, and 8.1, please follow the instructions on the [Installing USB Driver on Windows](Installing-USB-Driver-on-Windows) page before proceeding with the instructions on this page.
<h4>Step One: Set up the Arduino IDE</h4>
1. Download the Arduino IDE installation package from https://www.arduino.cc/en/Main/Software
1. Download the Arduino IDE installation package from https://www.arduino.cc/en/Main/Software
As of this writing, the latest version is v1.8.8, which you can download from this URL:
As of this writing, the latest version is v1.8.13, which you can download from this URL:
_**Note:** Some users have had difficulties with the Windows store version of the Arduino IDE. Please use the downloadable installation package._
_**Note:** Some users have had difficulties with the Windows store version of the Arduino IDE. Please use the downloadable installation package._
2. Open the installation package and follow the prompts to install the Arduino IDE.
2. Open the installation package and follow the prompts to install the Arduino IDE.
Next step: [Add keyboard support to Arduino](Add-keyboard-support-to-Arduino)
Next step: [Add keyboard support to Arduino](#Add-keyboard-support-to-Arduino)
## <aname="Arduino-FreeBSD"/>Install on FreeBSD
## <aname="Arduino-FreeBSD"/>Install on FreeBSD
The Arduino system has been designed to be accessible to people at all skill levels, and Keyboardio is built on top of the Arduino platform because we share that goal. There are many ways to set up your system to work with the Keyboardio firmware, the most typical is to use the Arduino Integrated Development Environment (IDE); an application that gives some visual context to the code you want to send to your Arduino device. This is the easiest process for folks who are new to Arduino, or to programming generally. If you follow the instructions below step by step you should be fine. :-)
<h4>Step One: installing support packages</h4>
1. Install the following packages required by the build system: `bash`, `gmake`, `perl5`, `avrdude`, and `arduino18`.
1. Install the following packages required by the build system: `bash`, `gmake`, `perl5`, `avrdude`, and `arduino18`.
a. If you want to flash your firmware as non-root, ensure your user has write access to the appropriate USB devices in devfs. By default, the devices are owned by `root`:`operator`, so put yourself in the `operator` group. You will also need to add yourself to the `dialer` group to use the modem device:
1. If you want to flash your firmware as non-root, ensure your user has write access to the appropriate USB devices in devfs. By default, the devices are owned by `root`:`operator`, so put yourself in the `operator` group. You will also need to add yourself to the `dialer` group to use the modem device:
```sh
```sh
$ sudo pw groupmod operator -m $USER
$ sudo pw groupmod operator -m $USER
$ sudo pw groupmod dialer -m $USER
$ sudo pw groupmod dialer -m $USER
```
```
b. Add devfs rules for write access for operator to USB devices:
1. Add devfs rules for write access for operator to USB devices:
```sh
```sh
$ cat <<EOM>> /etc/devfs.rules
$ cat <<EOM>> /etc/devfs.rules
@ -148,15 +139,19 @@ The Arduino system has been designed to be accessible to people at all skill lev
EOM
EOM
```
```
c. Update `/etc/rc.conf` to use the new devfs rule as the system rule:
1. Update `/etc/rc.conf` to use the new devfs rule as the system rule:
```sh
```sh
$ sudo sysrc devfs_system_ruleset=operator_usb
$ sudo sysrc devfs_system_ruleset=operator_usb
```
```
d. Restart devfs:
1. Restart devfs:
```sh
```sh
$ sudo service devfs restart
$ sudo service devfs restart
```
```
Next step: [Add keyboard support to Arduino](#Add-keyboard-support-to-Arduino)
# <aname="Add-keyboard-support-to-Arduino"/>Add keyboard support to Arduino