Setup arduino development environment for flipper
tags: flipper, arduino, setup, IDE, development
1. Requirements
The Flipper board must be powered on. The board is power by
- branch the USB of the PC to the flipper USB
- either CLOSE the solder jumper SJ102 or branch the Flipper on a Dolphin board AND flip the power switch of the Dolphin board to on.
2. Setup the Arduino IDE to use Flipper boards
Append the following link to the field: Files > Preferences > Additional Boards Manager URLs
Then go to Tools > Board … > Boards Manager …
Search for Strataggem in the search bar and click to Install
If you are using Linux, you should install adafruit-nrfutil to be able to flash your board using the serial port.
To do so run :
pip3 install adafruit-nrfutil
Then you are ready to flash your first code. This example makes the red blink :
void setup() { } void loop() { digitalWrite(LED_RED, HIGH); delay(1000); digitalWrite(LED_RED, LOW); delay(1000); }