Shahariar
Published © CC BY

Particle Xenon Arduino Conversion (Feather nRF52840 Express)

Bring life to your dusty Xenon boards from Particle and make them useable in Arduino IDE with Adafruit Feather nRF52840 bootloader

IntermediateProtip1 hour556
Particle Xenon Arduino Conversion (Feather nRF52840 Express)

Things used in this project

Hardware components

Xenon
Particle Xenon
×1
Particle debugger/programmer
×1
XUP USB-JTAG Programming Cable
AMD XUP USB-JTAG Programming Cable
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

img_20221130_020041_HK9kWNRY1j.jpg

Code

openocd-0.10.0.zip

Powershell
Download and Unzip in C:\ location
No preview (download only).

Bootloader

C/C++
Source: https://github.com/adafruit/Adafruit_nRF52_Bootloader/releases
No preview (download only).

RGB blinky code

Arduino
#include <Arduino.h>
#include <Adafruit_TinyUSB.h> 
void setup() 

{

  pinMode(24, OUTPUT);
   pinMode(25, OUTPUT);
    pinMode(26, OUTPUT);
}
     
void loop() 

{
  digitalToggle(24); 
  delay(100);           
  digitalToggle(24); 
  delay(100);                
  digitalToggle(25); 
  delay(100);                
  digitalToggle(25); 
  delay(100);                
  digitalToggle(26); 
  delay(100);             
  digitalToggle(26); 
  delay(100);         
  
}

Credits

Shahariar
75 projects • 270 followers
"What Kills a 'Great life' is a 'Good Life', which is Living a Life Inside While Loop"
Contact

Comments

Please log in or sign up to comment.