How to get micro:bit working in the Arduino IDE on Fedora. Based heavilly on this guide:
https://learn.adafruit.com/use-micro-bit-with-arduino/install-board-and-blink
- Add new board manager URL (Preferences):
- Install nrf boards support (Tools -> Board -> Boards manager *. search for nrf5, install "Nordic Semiconductor nRF5 Boards"
- Install systemd-libs.i686 to provide libudev1:i386 *. dnf install systemd-libs.i686
- Create an udev rule to allow user to access the microbit
- create "/etc/udev/rules.d/99-microbit.rules":
- ATTRS{idVendor}=="0d28", ATTRS{idProduct}=="0204", MODE="666"
- udevadm control --reload-rules
- create "/etc/udev/rules.d/99-microbit.rules":
- Plug in the microbit
- Set port in arduino IDE as usual
- Use microbit-blink.ino from this repo
- Compile & upload