Skip to content

Commit 6a96929

Browse files
authored
Improving README and documentation (#166)
1 parent f0e3742 commit 6a96929

File tree

339 files changed

+3468
-2419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

339 files changed

+3468
-2419
lines changed

devices/AD5328/README.md

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,34 @@
11
# AD5328 - Digital to Analog Convertor
2+
23
AD5328 is an Digital-to-Analog converter (DAC) with 12 bits of resolution.
34

5+
## Documentation
6+
7+
Product information and documentation can he found [here](https://www.analog.com/en/products/ad5328.html)
8+
49
## Usage
510

11+
**Important**: make sure you properly setup the SPI pins especially for ESP32 before creating the `SpiDevice`, make sure you install the `nanoFramework.Hardware.ESP32 nuget`:
12+
13+
```csharp
14+
//////////////////////////////////////////////////////////////////////
15+
// when connecting to an ESP32 device, need to configure the SPI GPIOs
16+
// used for the bus
17+
Configuration.SetPinFunction(21, DeviceFunction.SPI1_MOSI);
18+
Configuration.SetPinFunction(22, DeviceFunction.SPI1_MISO);
19+
Configuration.SetPinFunction(23, DeviceFunction.SPI1_CLOCK);
20+
// Make sure as well you are using the right chip select
21+
```
22+
23+
For other devices like STM32, please make sure you're using the preset pins for the SPI bus you want to use. The chip select can as well be pre setup.
24+
625
```csharp
726
using System.Device.Spi;
827
using System.Threading;
928
using Iot.Device.DAC;
1029
using UnitsNet;
1130

12-
var spisettings = new SpiConnectionSettings(0, 1)
31+
var spisettings = new SpiConnectionSettings(1, 42)
1332
{
1433
Mode = SpiMode.Mode2
1534
};
@@ -19,8 +38,3 @@ var dac = new AD5328(spidev, ElectricPotential.FromVolts(2.5), ElectricPotential
1938
Thread.Sleep(1000);
2039
dac.SetVoltage(0, ElectricPotential.FromVolts(1));
2140
```
22-
23-
## References
24-
25-
https://www.analog.com/en/products/ad5328.html
26-

devices/AD5328/samples/Program.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@
66
using Iot.Device.DAC;
77
using UnitsNet;
88

9-
var spisettings = new SpiConnectionSettings(0, 1)
9+
//////////////////////////////////////////////////////////////////////
10+
// when connecting to an ESP32 device, need to configure the SPI GPIOs
11+
// used for the bus
12+
//Configuration.SetPinFunction(21, DeviceFunction.SPI1_MOSI);
13+
//Configuration.SetPinFunction(22, DeviceFunction.SPI1_MISO);
14+
//Configuration.SetPinFunction(22, DeviceFunction.SPI1_CLOCK);
15+
// Make sure as well you are using the right chip select
16+
var spisettings = new SpiConnectionSettings(1, 42)
1017
{
1118
Mode = SpiMode.Mode2
1219
};

devices/Ads1115/ADS1115_circuit.fzz

36.4 KB
Binary file not shown.
101 KB
Loading

devices/Ads1115/README.md

+86-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
# ADS1115 - Analog to Digital Converter
2+
23
ADS1115 is an Analog-to-Digital converter (ADC) with 16 bits of resolution.
34

5+
## Documentation
6+
7+
Prodcut datasheet can be found [here](https://cdn-shop.adafruit.com/datasheets/ads1115.pdf)
8+
49
## Sensor Image
5-
![](sensor.jpg)
10+
11+
![ADS1115](sensor.jpg)
612

713
## Usage
8-
```C#
14+
15+
**Important**: make sure you properly setup the I2C pins especially for ESP32 before creating the `I2cDevice`, make sure you install the `nanoFramework.Hardware.ESP32 nuget`:
16+
17+
```csharp
18+
//////////////////////////////////////////////////////////////////////
19+
// when connecting to an ESP32 device, need to configure the I2C GPIOs
20+
// used for the bus
21+
Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);
22+
Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);
23+
```
24+
25+
For other devices like STM32, please make sure you're using the preset pins for the I2C bus you want to use.
26+
27+
```csharp
928
// set I2C bus ID: 1
1029
// ADS1115 Addr Pin connect to GND
1130
I2cConnectionSettings settings = new I2cConnectionSettings(1, (int)I2cAddress.GND);
@@ -23,11 +42,71 @@ using (Ads1115 adc = new Ads1115(device, InputMultiplexer.AIN0, MeasuringRange.F
2342
}
2443
```
2544

26-
See the samples project for more examples and usage for different applications.
45+
See the [samples project](https://github.com/dotnet/iot/tree/main/src/devices/Ads1115/samples) for more examples and usage for different applications.
46+
47+
If you want to use the interrupt pin, the pulses generated by the ADS1115 might be to short to be properly recognized in the software, i.e. on a MCU. The schematic below shows a way of increasing the pulse length so that it is properly recognized (from about 10us to 150us). This uses discrete electronics, but an implementation with an NE555 or equivalent would likely work as well (Just note that you need a type that works at 3.3V).
48+
49+
![Pulse_lengthener_schema](Pulse_lengthener_schema.png)
50+
51+
## Example
52+
53+
### Hardware Required
54+
55+
* ADS1115
56+
* Rotary Potentiometer
57+
* Male/Female Jumper Wires
58+
59+
### Circuit
60+
61+
![circuit](ADS1115_circuit_bb.png)
62+
63+
ADS1115
64+
65+
* ADDR - GND
66+
* SCL - SCL
67+
* SDA - SDA
68+
* VCC - 5V
69+
* GND - GND
70+
* A0 - Rotary Potentiometer Pin 2
2771

28-
If you want to use the interrupt pin, the pulses generated by the ADS1115 might be to short to be properly recognized in the software, i.e. on a Raspberry Pi. The schematic below shows a way of increasing the pulse length so that it is properly recognized (from about 10us to 150us). This uses discrete electronics, but an implementation with an NE555 or equivalent would likely work as well (Just note that you need a type that works at 3.3V).
72+
Rotary Potentiometer
73+
74+
* Pin 1 - 5V
75+
* Pin 2 - ADS1115 Pin A0
76+
* Pin 3 - GND
77+
78+
### Code
79+
80+
```csharp
81+
// set I2C bus ID: 1
82+
// ADS1115 Addr Pin connect to GND
83+
I2cConnectionSettings settings = new I2cConnectionSettings(1, (int)I2cAddress.GND);
84+
I2cDevice device = I2cDevice.Create(settings);
85+
86+
// pass in I2cDevice
87+
// measure the voltage AIN0
88+
// set the maximum range to 6.144V
89+
using (Ads1115 adc = new Ads1115(device, InputMultiplexer.AIN0, MeasuringRange.FS6144))
90+
{
91+
// loop
92+
while (true)
93+
{
94+
// read raw data form the sensor
95+
short raw = adc.ReadRaw();
96+
// raw data convert to voltage
97+
double voltage = adc.RawToVoltage(raw);
98+
99+
Debug.WriteLine($"ADS1115 Raw Data: {raw}");
100+
Debug.WriteLine($"Voltage: {voltage}");
101+
Debug.WriteLine();
102+
103+
// wait for 2s
104+
Thread.Sleep(2000);
105+
}
106+
}
107+
```
29108

30-
![](Pulse_lengthener_schema.png)
109+
### Results
31110

32-
## References
33-
https://cdn-shop.adafruit.com/datasheets/ads1115.pdf
111+
![run results](RunningResult.jpg)
112+
![interupt result](InterruptResult.png)
File renamed without changes.
-15.6 KB
Binary file not shown.
-108 KB
Binary file not shown.

devices/Ads1115/samples/Program.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
using Iot.Device.Ads1115;
1010
using UnitsNet;
1111

12+
//////////////////////////////////////////////////////////////////////
13+
// when connecting to an ESP32 device, need to configure the I2C GPIOs
14+
// used for the bus
15+
//Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);
16+
//Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);
17+
1218
// set I2C bus ID: 1
1319
// ADS1115 Addr Pin connect to GND
1420
I2cConnectionSettings settings = new(1, (int)I2cAddress.GND);
@@ -65,7 +71,7 @@
6571
}
6672

6773
// Provide a callback that triggers each time the ADC has a new value available. The DataRate parameter will define the sample rate.
68-
// We are using pin 23 as interrupt input from the ADC, but note that the trigger signal from the ADC may be to short to be properly recognized by the Raspberry Pi and
74+
// We are using pin 23 as interrupt input from the ADC, but note that the trigger signal from the ADC may be to short to be properly recognized by the MCU and
6975
// some extra electronics is required to make this reliably work (see readme).
7076
using (var controller = new GpioController(PinNumberingScheme.Logical))
7177
{

devices/Ads1115/samples/README.md

-56
This file was deleted.

devices/Adxl345/ADXL345_circuit.fzz

23 KB
Binary file not shown.
91.1 KB
Loading

devices/Adxl345/README.md

+76-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,35 @@
11
# ADXL345 - Accelerometer
2+
23
ADXL345 is a small, thin, low power, 3-axis accelerometer with high resolution (13-bit) measurement at up to ±16g.
34

5+
## Documentation
6+
7+
In [Chinese](http://wenku.baidu.com/view/87a1cf5c312b3169a451a47e.html)
8+
9+
In [English](https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL345.pdf)
10+
411
## Sensor Image
5-
![](sensor.jpg)
12+
13+
![sensor](sensor.jpg)
614

715
## Usage
8-
```C#
9-
SpiConnectionSettings settings = new SpiConnectionSettings(0, 0)
16+
17+
**Important**: make sure you properly setup the SPI pins especially for ESP32 before creating the `SpiDevice`, make sure you install the `nanoFramework.Hardware.ESP32 nuget`:
18+
19+
```csharp
20+
//////////////////////////////////////////////////////////////////////
21+
// when connecting to an ESP32 device, need to configure the SPI GPIOs
22+
// used for the bus
23+
Configuration.SetPinFunction(21, DeviceFunction.SPI1_MOSI);
24+
Configuration.SetPinFunction(22, DeviceFunction.SPI1_MISO);
25+
Configuration.SetPinFunction(23, DeviceFunction.SPI1_CLOCK);
26+
// Make sure as well you are using the right chip select
27+
```
28+
29+
For other devices like STM32, please make sure you're using the preset pins for the SPI bus you want to use. The chip select can as well be pre setup.
30+
31+
```csharp
32+
SpiConnectionSettings settings = new SpiConnectionSettings(1, 42)
1033
{
1134
ClockFrequency = Adxl345.SpiClockFrequency,
1235
Mode = Adxl345.SpiMode
@@ -24,7 +47,54 @@ using (Adxl345 sensor = new Adxl345(device, GravityRange.Range04))
2447
}
2548
```
2649

27-
## References
28-
In Chinese : http://wenku.baidu.com/view/87a1cf5c312b3169a451a47e.html
50+
## Example
51+
52+
### Hardware Required
53+
54+
* ADXL345
55+
* Male/Female Jumper Wires
56+
57+
## Circuit
58+
59+
![cicuit](ADXL345_circuit_bb.png)
60+
61+
* VCC - 3.3 V
62+
* GND - GND
63+
* CS - CS
64+
* SDO - SPI1 MISO
65+
* SDA - SPI1 MOSI
66+
* SCL - SPI1 SCLK
67+
68+
### Code
69+
70+
```csharp
71+
SpiConnectionSettings settings = new SpiConnectionSettings(1, 42)
72+
{
73+
ClockFrequency = Adxl345.SpiClockFrequency,
74+
Mode = Adxl345.SpiMode
75+
};
76+
var device = SpiDevice.Create(settings);
77+
78+
// Set gravity measurement range ±4G
79+
using (Adxl345 sensor = new Adxl345(device, GravityRange.Range04))
80+
{
81+
// loop
82+
while (true)
83+
{
84+
// read data
85+
Vector3 data = sensor.Acceleration;
86+
87+
Debug.WriteLine($"X: {data.X.ToString("0.00")} g");
88+
Debug.WriteLine($"Y: {data.Y.ToString("0.00")} g");
89+
Debug.WriteLine($"Z: {data.Z.ToString("0.00")} g");
90+
Debug.WriteLine();
91+
92+
// wait for 500ms
93+
Thread.Sleep(500);
94+
}
95+
}
96+
```
97+
98+
### Result
2999

30-
In English : https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL345.pdf
100+
![running result](RunningResult.jpg)
File renamed without changes.
-2.74 KB
Binary file not shown.
-99.1 KB
Binary file not shown.

devices/Adxl345/samples/Program.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@
88
using Iot.Device.Adxl345;
99
using System.Diagnostics;
1010

11-
SpiConnectionSettings settings = new(0, 0)
11+
//////////////////////////////////////////////////////////////////////
12+
// when connecting to an ESP32 device, need to configure the SPI GPIOs
13+
// used for the bus
14+
//Configuration.SetPinFunction(21, DeviceFunction.SPI1_MOSI);
15+
//Configuration.SetPinFunction(22, DeviceFunction.SPI1_MISO);
16+
//Configuration.SetPinFunction(22, DeviceFunction.SPI1_CLOCK);
17+
// Make sure as well you are using the right chip select
18+
SpiConnectionSettings settings = new(1, 42)
1219
{
1320
ClockFrequency = Adxl345.SpiClockFrequency,
1421
Mode = Adxl345.SpiMode

0 commit comments

Comments
 (0)