-
Notifications
You must be signed in to change notification settings - Fork 15
Getting Started
If you haven't yet picked up a Flipper board, please visit our store here and purchase a developer unit. All units are tested and shipped with the latest firmware.
Please be aware that the hardware is still under development and may differ from the final product, although changes are unlikely to be made at this point.
git clone https://github.com/flipper_io/flipper.git
cd flipper
make
make install
It is likely that the firmware installed on your device is outdated, please update it using the following command.
make update
You should see the LED on the device illuminated green. Your device is now raring to go!
make install-python
from flipper import *
led.rgb(0, 0, 10)
You should see the LED on the device turn blue. Congratulations, you've successfully set up your device! You can take this example a step further by turning on a GPIO pin.
from flipper import *
gpio.enable(gpio.io4);
gpio.write(gpio.io4);
If you have an LED attached to your Flipper board, you will see it turn on.