nanoFramework.Iot.Device.Scd30
1.0.335
Prefix Reserved
See the version list below for details.
dotnet add package nanoFramework.Iot.Device.Scd30 --version 1.0.335
NuGet\Install-Package nanoFramework.Iot.Device.Scd30 -Version 1.0.335
<PackageReference Include="nanoFramework.Iot.Device.Scd30" Version="1.0.335" />
paket add nanoFramework.Iot.Device.Scd30 --version 1.0.335
#r "nuget: nanoFramework.Iot.Device.Scd30, 1.0.335"
// Install nanoFramework.Iot.Device.Scd30 as a Cake Addin #addin nuget:?package=nanoFramework.Iot.Device.Scd30&version=1.0.335 // Install nanoFramework.Iot.Device.Scd30 as a Cake Tool #tool nuget:?package=nanoFramework.Iot.Device.Scd30&version=1.0.335
Sensirion SCD30 Particulate Matter Sensor
This is a library to interact with the Sensirion SCD30 Sensor Module for CO2, humidity and temperature. Currently, only the Modbus interface is implemented. The SCD30 also supports I2C, but requires clock stretching, which is currently not supported in the .NET Nanoframework ESP32 implementation.
Documentation
- For this implementation the official datasheet and interface description have been used.
Usage for the Modbus interface
Important: make sure you properly setup the UART pins for ESP32 before creating the SerialPort
. For this, make sure you install the nanoFramework.Hardware.Esp32
NuGet and use the Configuration
class to configure the pins:
Configuration.SetPinFunction(5, DeviceFunction.COM3_TX);
Configuration.SetPinFunction(27, DeviceFunction.COM3_RX);
Initialize the SerialPort
and pass it to the Scd30Sensor
. You'll stay in control of the SerialPort
for any exotic situations (i.e. InvertSignalLevels
or multiplexing scenarios). The constructor of the Scd30Sensor
will configure the SerialPort
to the expected BaudRate
and other settings:
var scd30 = new Scd30Sensor(new SerialPort("COM3"));
Use the scd30
to interact with the sensor, e.g.:
var firmware = scd30.ReadFirmwareVersion();
Debug.WriteLine($"SCD30 detected: Firmware version={firmware}");
Collect a measurement reliably:
scd30.SetMeasurementInterval(TimeSpan.FromSeconds(2));
scd30.StartContinuousMeasurement();
Thread.Sleep(5000);
if (scd30.GetDataReadyStatus())
{
var measurement = scd30.ReadMeasurement();
Debug.WriteLine($"Measurement: {measurement}");
}
The above would output the following:
SCD30 detected: Firmware version=3.66
Measurement: Co2Concentration=400.8741 ppm, Temperature=27.10421752 °C, RelativeHumidity=32.75756835 %RH
Check out the sample for more information.
I don't get any measurements and GetDataReadyStatus
never returns true!
When this happens, make sure you provide enough current/voltage to your sensor. In my particular case I was providing power from the 3v3 of my Pycom WiPy to both the vin
and sel
pins
on the SCD30. However, the measurements never worked.
Instead, connecting the 5v to the vin
and the 3v3 to sel
made the SCD30 work as expected. The sel
must be pulled high to enable the Modbus interface.
DO NOT CONNECT 5V TO sel
, it is only tolerant up to 4v so you must use a voltage divider if you do not have 3v3 available
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- nanoFramework.CoreLibrary (>= 1.14.2)
- nanoFramework.Runtime.Events (>= 1.11.6)
- nanoFramework.Runtime.Native (>= 1.6.6)
- nanoFramework.System.Buffers.Binary.BinaryPrimitives (>= 1.2.325)
- nanoFramework.System.Diagnostics.Stopwatch (>= 1.2.325)
- nanoFramework.System.IO.Ports (>= 1.1.60)
- nanoFramework.System.IO.Streams (>= 1.1.38)
- nanoFramework.System.Math (>= 1.5.29)
- nanoFramework.System.Text (>= 1.2.37)
- UnitsNet.nanoFramework.Length (>= 5.26.0)
- UnitsNet.nanoFramework.Pressure (>= 5.26.0)
- UnitsNet.nanoFramework.RelativeHumidity (>= 5.26.0)
- UnitsNet.nanoFramework.Temperature (>= 5.26.0)
- UnitsNet.nanoFramework.VolumeConcentration (>= 5.26.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.651 | 77 | 10/23/2024 |
1.0.640 | 77 | 10/11/2024 |
1.0.634 | 80 | 10/3/2024 |
1.0.617 | 114 | 9/6/2024 |
1.0.609 | 85 | 8/28/2024 |
1.0.591 | 107 | 8/9/2024 |
1.0.579 | 77 | 7/26/2024 |
1.0.568 | 86 | 7/17/2024 |
1.0.551 | 107 | 6/19/2024 |
1.0.548 | 96 | 6/14/2024 |
1.0.526 | 103 | 5/15/2024 |
1.0.514 | 117 | 4/15/2024 |
1.0.492 | 123 | 3/22/2024 |
1.0.472 | 113 | 2/28/2024 |
1.0.440 | 186 | 1/5/2024 |
1.0.436 | 121 | 12/20/2023 |
1.0.414 | 164 | 11/10/2023 |
1.0.394 | 116 | 11/8/2023 |
1.0.381 | 135 | 10/6/2023 |
1.0.374 | 128 | 9/27/2023 |
1.0.362 | 130 | 9/6/2023 |
1.0.356 | 153 | 8/16/2023 |
1.0.347 | 148 | 8/2/2023 |
1.0.341 | 141 | 7/28/2023 |
1.0.335 | 146 | 7/19/2023 |
1.0.332 | 146 | 7/14/2023 |
1.0.323 | 144 | 6/21/2023 |
1.0.319 | 142 | 6/14/2023 |
1.0.315 | 135 | 6/7/2023 |
1.0.313 | 128 | 6/2/2023 |
1.0.307 | 121 | 5/26/2023 |
1.0.291 | 128 | 5/12/2023 |
1.0.280 | 133 | 5/10/2023 |
1.0.275 | 129 | 5/3/2023 |
1.0.251 | 207 | 3/17/2023 |
1.0.245 | 223 | 3/10/2023 |
1.0.241 | 215 | 3/8/2023 |
1.0.237 | 218 | 2/27/2023 |
1.0.234 | 219 | 2/24/2023 |
1.0.231 | 247 | 2/22/2023 |
1.0.200 | 288 | 1/9/2023 |
1.0.190 | 289 | 1/5/2023 |
1.0.186 | 295 | 1/3/2023 |
1.0.181 | 280 | 12/28/2022 |
1.0.137 | 352 | 11/14/2022 |
1.0.131 | 368 | 11/5/2022 |
1.0.119 | 372 | 10/25/2022 |
1.0.106 | 365 | 10/22/2022 |
1.0.95 | 417 | 10/10/2022 |
1.0.92 | 392 | 10/8/2022 |
1.0.67 | 403 | 9/16/2022 |
1.0.65 | 464 | 9/15/2022 |
1.0.41 | 388 | 9/3/2022 |
1.0.25 | 389 | 8/15/2022 |
1.0.18 | 407 | 8/6/2022 |
1.0.16 | 394 | 8/5/2022 |
1.0.13 | 399 | 8/4/2022 |
1.0.6 | 391 | 8/1/2022 |
1.0.1 | 418 | 7/29/2022 |