From f8e7f1a33421a1c98cb462337d814cc037634579 Mon Sep 17 00:00:00 2001 From: Krzysztof Wicher Date: Thu, 22 Jan 2026 17:59:51 +0100 Subject: [PATCH] Introduce markdown linter MD001 error Changed '## Hardware requirements' to '#### Hardware requirements' for better formatting. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 826a93f65c..d48e382203 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The repository also contains [Iot.Device.Bindings](https://www.nuget.org/package > [!NOTE] > This repository is still in experimental stage and all APIs are subject to changes. -## Hardware requirements +#### Hardware requirements While most of the bindings and examples in this project require and are designed to support specific hardware (such as [LCD displays](src/devices/CharacterLcd), [temperature sensors](src/devices/Dhtxx), [single-board computers](src/devices/Board/RaspberryPiBoard.cs), [microcontrollers](src/devices/Arduino), etc.), the library itself tries to be as hardware-independent as possible. Some bindings are even written to showcase the use of IOT interfaces with hardware that is already present in normal desktop computers (such as [keyboards](src/devices/Board/KeyboardGpioDriver.cs) or [CPU temperature sensors](src/devices/HardwareMonitor)). So to get started, you do not need expensive hardware. Or you can start out with cheap stuff, such as an Arduino Uno.