<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://home.roboticlab.eu/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://home.roboticlab.eu/feed.php">
        <title>Robotic &amp; Microcontroller Educational Knowledgepage - Network of Excellence - en:iot-open:practical:hardware:rtu:robotnest:scenarios</title>
        <description></description>
        <link>https://home.roboticlab.eu/</link>
        <image rdf:resource="https://home.roboticlab.eu/_media/wiki/logo.png" />
       <dc:date>2026-04-06T14:15:01+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/scenarios/neopixel?rev=1753868617&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://home.roboticlab.eu/_media/wiki/logo.png">
        <title>Robotic & Microcontroller Educational Knowledgepage - Network of Excellence</title>
        <link>https://home.roboticlab.eu/</link>
        <url>https://home.roboticlab.eu/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/scenarios/neopixel?rev=1753868617&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-07-30T09:43:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>NRF52 Neopixel</title>
        <link>https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/scenarios/neopixel?rev=1753868617&amp;do=diff</link>
        <description>NRF52 Neopixel

Reference: &lt;https://github.com/adafruit/Adafruit_NeoPixel&gt;


#include &lt;Arduino.h&gt;
#include &lt;Adafruit_NeoPixel.h&gt;
#include &lt;Adafruit_TinyUSB.h&gt;

#define LED_PIN 17
#define LED_COUNT 8

Adafruit_NeoPixel strip(LED_COUNT, LED_PIN);

void setup() {
  Serial.begin(115200);

  strip.begin();
  strip.show();
}
void loop() {
  strip.clear();
  strip.setPixelColor(1,0,0,255);
  strip.show();
  delay(1000);
  strip.clear();
  strip.setPixelColor(6,0,0,255);
  strip.show();
  delay(1500);
}</description>
    </item>
</rdf:RDF>
