From 836a80e029c238523452264b00eb368cf1a786f8 Mon Sep 17 00:00:00 2001 From: Denis Nutiu Date: Sat, 10 Apr 2021 17:55:08 +0300 Subject: [PATCH] Update readme.md --- PMS5003/readme.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 PMS5003/readme.md diff --git a/PMS5003/readme.md b/PMS5003/readme.md deleted file mode 100644 index aaa44e5..0000000 --- a/PMS5003/readme.md +++ /dev/null @@ -1,36 +0,0 @@ -# Introduction - -C# Library for interfacing with the PMS5003 Particulate Matter Sensor. - -For wiring the Sensor consult the [datasheet](https://www.aqmd.gov/docs/default-source/aq-spec/resources-page/plantower-pms5003-manual_v2-3.pdf). - -## Example - -```csharp -using System; -using System.Threading; - -namespace Application -{ - class Example - { - static void Main(string[] args) - { - var pms = new Pms5003(); - while (true) - { - try - { - var data = pms.ReadData(); - Console.WriteLine(data); - Thread.Sleep(2000); - } - catch (Exception e) - { - Console.WriteLine(e); - } - } - } - } -} -``` \ No newline at end of file