Flash your ZSA Keyboard the EZ way.
Wally comes in two flavors, a GUI and a CLI app. Download the application for your favorite plateform from the release page.
Note for Linux users, follow the instructions from our wiki page before running the application.
Note for Mac OS users, the CLI requires libusb to be installed: brew install libusb
The following instructions apply only to those who wish to actively develop Wally and contribute new features or bugfixes to this open-source project. If you simply want to flash your board with some fresh firmware, see above.
Found a bug? Open an issue here.
Wally is built using Go at its core and Preact for the UI. The binding between core and ui happens using a fork of the webview package. This guide assumes you have a proper Go and NodeJS development environment running.
Wally is compatible with Windows, Linux, and macOS. Develping using each plateform requires some extra setup:
- Install TDM GCC
- Setup pkg-config - see http://www.mingw.org/wiki/FAQ "How do I get pkg-config installed?"
- Grab and install the latest version of libusb from here
Follow the instructions from our wiki page
Install libusb using brew
:
brew install libusb
From the ui
folder run npm run serve
or yarn dev
to run a webpack dev server locally on port 8080
.
Run the following:
go build -tags dev -o wally
This build will bind its ui with the local webpack server.
Run the following:
go build cli/main.go -o wally-cli
Run build.win.bat
Run build.linux.sh
Run build.osx.sh