commit 4a88c829093d894e1f1e96e3fe2524a5d578ca26
parent 17379dbdcc0fbafbba7136ec8e1df40c9aa8e905
Author: Markus Hanetzok <markus@hanetzok.net>
Date: Thu, 26 Sep 2024 16:28:04 +0200
convert README to markdown
Diffstat:
2 files changed, 17 insertions(+), 15 deletions(-)
diff --git a/README b/README
@@ -1,15 +0,0 @@
-sds - sensor data server
-========================
-sds is a simple webserver that I use to gather and display the values recorded
-by temperature & humidity sensors made with D1 Minis and DHT20 sensors.
-
-Dependencies
-------------
-libcurl is needed to compile this program
-
-Usage
------
-This program can be used with any kind of sensor, that can make its data
-available via HTTP. The response value should be plain text.
-
-Sensors can be added by creating a custom sensors.h.
diff --git a/README.md b/README.md
@@ -0,0 +1,17 @@
+sds - sensor data server
+========================
+sds is a simple webserver that I use to gather and display the values recorded
+by temperature & humidity sensors made with D1 Minis and DHT20 sensors.
+
+It is my first attempt at coding in C, coming from OOP-Languages like Java and C#.
+
+Dependencies
+------------
+libcurl is needed to compile this program
+
+Usage
+-----
+This program can be used with any kind of sensor, that can make its data
+available via HTTP. The response value should be plain text.
+
+Sensors can be added by creating a custom sensors.h.