<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.lamaplc.com/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>lamaPLC - arduino</title>
        <description></description>
        <link>https://www.lamaplc.com/</link>
        <lastBuildDate>Fri, 03 Apr 2026 21:32:44 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://www.lamaplc.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
            <title>lamaPLC</title>
            <link>https://www.lamaplc.com/</link>
        </image>
        <item>
            <title>arduino_basic</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:arduino_basic&amp;rev=1758665246&amp;do=diff</link>
            <description>LamaPLC: Arduino basic

[Lamaplc: Arduino basic]
Arduino is an open-source hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices. Its hardware products are licensed under a CC BY-SA license. In contrast, the software is licensed under the GNU Lesser General Public License (LGPL) or the GNU General Public License (GPL), allowing anyone to manufacture Arduino boards and distribute…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 23 Sep 2025 22:07:26 +0000</pubDate>
        </item>
        <item>
            <title>arduino_family_mkr</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:arduino_family_mkr&amp;rev=1756030786&amp;do=diff</link>
            <description>LamaPLC: Arduino MKR Family

The Arduino MKR family was created for makers and engineers to quickly prototype IoT projects. What sets the MKR boards apart from other Arduino boards is the 67.64mm * 25mm MKR family form factor, the integrated connectivity in most of them, and the potential for projects of variing levels.&lt;a id=&quot;boards&quot;&gt;&lt;/a&gt;&lt;a id=&quot;mkr_zero&quot;&gt;&lt;/a&gt;&lt;a id=&quot;mkr_fox_1200&quot;&gt;&lt;/a&gt;&lt;a id=&quot;shields&quot;&gt;&lt;/a&gt;&lt;a id=&quot;eth&quot;&gt;&lt;/a&gt;&lt;a id=&quot;m_bus&quot;&gt;&lt;/a&gt;00</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 24 Aug 2025 10:19:46 +0000</pubDate>
        </item>
        <item>
            <title>arduino_shield</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:arduino_shield&amp;rev=1759617659&amp;do=diff</link>
            <description>LamaPLC: Arduino shields

Ethernet shield

The Arduino Ethernet Shield enables an Arduino board to connect to the internet using the Ethernet library and read or write data on an SD card with the SD library.

Difference Between W5500 and W5100
[W5100][W5500]Arduino Ethernet shield W5100Arduino Ethernet shield W5500</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 04 Oct 2025 22:40:59 +0000</pubDate>
        </item>
        <item>
            <title>arm_stm</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:arm_stm&amp;rev=1698705249&amp;do=diff</link>
            <description>STM32F10: ARM STM32 Minimum System Development Module Board

STM32F103C8T6

[STM32F10]
Description: 


	*  Core: ARM 32 Cortex-M3 CPU
	*  Debug mode: SWD.
	*  work frequency: 72MHz
	*  flash memory: 64KB 
	*  SRAM: 20KB 
	*  Power: 2.0 .. 3.6V 

STM32F103C6T6</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 30 Oct 2023 22:34:09 +0000</pubDate>
        </item>
        <item>
            <title>code_collection</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:code_collection&amp;rev=1770489824&amp;do=diff</link>
            <description>LamaPLC: Arduino code collection

Frequently used code collection

TON



  // var def block
  unsigned long startMillis, currentMillis;     // current and start time
  const unsigned long period = 2000;            // the value is a number of milliseconds

  // code block
  currentMillis = millis();                     // get the current &quot;time&quot; (actually the number of milliseconds since the program started)
  if (currentMillis - startMillis &gt;= period)    // test whether the period has elapsed
  …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 07 Feb 2026 18:43:44 +0000</pubDate>
        </item>
        <item>
            <title>display_7_segment</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:display_7_segment&amp;rev=1717107573&amp;do=diff</link>
            <description>LamaPLC: Arduino 7-segment display

In the case of the 7-segment display - as the name suggests - 7 LED units must be basically controlled for the display, per segment (per character). As the figure below shows, this certainly takes up a lot of outputs, and it is always worth saving with outputs for Adruino systems, so this implementation is not very common:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 30 May 2024 22:19:33 +0000</pubDate>
        </item>
        <item>
            <title>display_lcd</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:display_lcd&amp;rev=1717110110&amp;do=diff</link>
            <description>LamaPLC: Arduino LCD

classic, no I²C

An LCD character display is a unique type of display that can only output individual ASCII characters with fixed size. Using these individual characters then we can form a text.

If we take a closer look at the display we can notice that there are small rectangular areas composed of 5×8 pixels grid. Each pixel can light up individually, and so we can generate characters within each grid.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 30 May 2024 23:01:50 +0000</pubDate>
        </item>
        <item>
            <title>display</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:display&amp;rev=1717108840&amp;do=diff</link>
            <description>LamaPLC: Arduino Display

[LamaPLC: Arduino Display]
Display is sometimes a photographic criterion for Arduino systems as well. For example, it is often necessary to display local measurements, in which case a 7-segment display or a simple LCD panel with a few lines comes in handy.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 30 May 2024 22:40:40 +0000</pubDate>
        </item>
        <item>
            <title>esp32</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:esp32&amp;rev=1686140362&amp;do=diff</link>
            <description>LamaPLC: Espressif ESP32 family

ESP WROOM-32

[ESP WROOM-32 pinout]</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 07 Jun 2023 12:19:22 +0000</pubDate>
        </item>
        <item>
            <title>index</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:index&amp;rev=1759614402&amp;do=diff</link>
            <description>Lamaplc: Arduino

[Lamaplc: Arduino basic]
Arduino is an open-source hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices. Its hardware products are licensed under a CC BY-SA license. In contrast, the software is licensed under the GNU Lesser General Public License (LGPL) or the GNU 00</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 04 Oct 2025 21:46:42 +0000</pubDate>
        </item>
        <item>
            <title>sidebar</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:sidebar&amp;rev=1770847371&amp;do=diff</link>
            <description>﻿lamaPLC Start  



automation! 

Simatic 

Arduino 

ESP32/ESP8266 

Labview 



Communication 

Sensors 

Actors 

Display/HMI 



3D Printing 

Calculations 

Impressum 









abbreviation index 

tag index</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 11 Feb 2026 22:02:51 +0000</pubDate>
        </item>
        <item>
            <title>wiring</title>
            <link>https://www.lamaplc.com/doku.php?id=arduino:wiring&amp;rev=1698959869&amp;do=diff</link>
            <description>lamaPLC : Arduino wiring

HI active switch connection

[HI active switch connection]

The image above shows a HI active switch connection. In the open, resting state of the circuit, the Arduino is connected to ground through a 10 kΩ (pull-down) resistor, so it is in the LO state. By pressing the button, the power supply is connected to it (it is recommended to connect a 100Ω resistor) to the input, so it goes into the HI state.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 02 Nov 2023 21:17:49 +0000</pubDate>
        </item>
    </channel>
</rss>
