The default firmware for the Dygma Raise.
Setup the Arduino IDE on your system. Make sure you install at least version 1.8.10, since older version may not support all required features.
On macOS, install the Arduino IDE using homebrew cask with brew cask install arduino
or download the application from the official website and move it to your /Applications
folder.
On Linux, your distribution's package manager probably includes the Arduino IDE, but it may be an out of date version. If your distribution installs a version of Arduino before 1.8.10 or so, you'll need to install the Arduino IDE following the instructions on the wiki.
If you install Arduino into some place that's /not/ /usr/local/arduino
, you'll need to set the $ARDUINO_PATH
environment variable to the directory containing the arduino
and arduino-builder
binaries.
mkdir -p $HOME/Documents/Arduino
cd $HOME/Documents/Arduino
mkdir -p $HOME/Arduino
cd $HOME/Arduino
arduino --install-boards arduino:samd
mkdir -p hardware/dygma
## then clone the hardware definitions to make them available to the arduino environment
git clone --recursive https://github.com/Dygmalab/Kaleidoscope-Bundle-Dygma.git hardware/dygma/samd
git clone https://github.com/Dygmalab/Raise-Firmware.git
Before you begin, make sure your Raise is connected to your computer.
cd Raise-Firmware
make flash
Open the sketch you wish to flash (for example, Raise-Firmware.ino
).
Click the Upload button or press Ctrl-U
.
Hold down the key in the top left corner of your keyboard (Esc
by default), until the compile finishes and the upload begins.