<?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</title>
        <description></description>
        <link>https://home.roboticlab.eu/</link>
        <image rdf:resource="https://home.roboticlab.eu/_media/wiki/logo.png" />
       <dc:date>2026-04-05T17:44:38+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/oled?rev=1753867984&amp;do=diff"/>
                <rdf:li rdf:resource="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/rgb-led?rev=1753866336&amp;do=diff"/>
                <rdf:li rdf:resource="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/scenarios?rev=1713599431&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/oled?rev=1753867984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-07-30T09:33:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Example of NRF52 with OLED</title>
        <link>https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/oled?rev=1753867984&amp;do=diff</link>
        <description>Example of NRF52 with OLED

Reference: &lt;https://www.waveshare.com/wiki/1.5inch_OLED_Module&gt;


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

#define LED_PIN 12
#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(1000);
}</description>
    </item>
    <item rdf:about="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/rgb-led?rev=1753866336&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-07-30T09:05:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Use of RGB LEDs</title>
        <link>https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/rgb-led?rev=1753866336&amp;do=diff</link>
        <description>Use of RGB LEDs

This scenario presents how to handle the brightness control of the tri-coloured LEDs. Both LEDs are electrically bound and cannot be controlled independently. Those LEDs have 3 colour channels, controlled independently: R (Red), G (Green) and B (Blue). Mixing of those colours creates other ones, such as pink and violet. Each R G B channel can be controlled with a separate GPIO to switch it on or off or control brightness using a PWM signal, as presented in this tutorial.</description>
    </item>
    <item rdf:about="https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/scenarios?rev=1713599431&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-04-20T07:50:31+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>nRF Laboratory Scenarios</title>
        <link>https://home.roboticlab.eu/en/iot-open/practical/hardware/rtu/robotnest/scenarios?rev=1713599431&amp;do=diff</link>
        <description>nRF Laboratory Scenarios</description>
    </item>
</rdf:RDF>
