Datasheet

To enable it go to System Preferences -> Security &
Privacy and click allow if you see Silab in the developer
name.
Download & Install Adafruit Driver (nRF52840 Windows)
For Feather nRF52840, If you are using Windows, you will need to follows Windows Driver
Installation (https://adafru.it/D0H) to download and install driver.
3. Run a Test Sketch
At this point, you should be able to run a test sketch from the Examples folder, or just flash the following blinky code
from the Arduino IDE:
This will blink the pin #17 red LED on the Feather
FAQs
I cannot upload sketch to Feather nRF52 !! Although I have followed the tutorial correctly.
This is probably caused by the bootloader version mismatched on your feather and installed BSP. Due to the
difference in flash layout (more details) and Softdevice API (which is bundled with bootloader), sketch built with
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
© Adafruit Industries https://learn.adafruit.com/bluefruit-nrf52-feather-learning-guide Page 26 of 175