Skip to content

Commit 101dd37

Browse files
committed
images update
1 parent 37da086 commit 101dd37

File tree

10 files changed

+5
-5
lines changed

10 files changed

+5
-5
lines changed
Loading
Loading
Loading
Loading
Loading

content/hardware/03.nano/boards/nano-matter/tutorials/user-manual/content.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ void loop() {
12701270
}
12711271
```
12721272

1273-
![Nano Matter built-in LED blink](assets/rgb-blink.gif)
1273+
![Nano Matter built-in LED blink](assets/blink-rgb-2.gif)
12741274

12751275
## Pins
12761276

@@ -1337,7 +1337,7 @@ digitalWrite(pin, LOW);
13371337

13381338
The example code shown below uses digital pin `D5` to control an LED and reads the state of a button connected to digital pin `D4`:
13391339

1340-
![Digital I/O example wiring](assets/gpio-wiring.png)
1340+
![Digital I/O example wiring](assets/gpio-wiring-2.png)
13411341

13421342
```arduino
13431343
// Define button and LED pin
@@ -1504,7 +1504,7 @@ analogReference(AR_INTERNAL1V2);
15041504

15051505
The example code shown below reads the analog input value from a potentiometer connected to `A0` and displays it on the IDE Serial Monitor. To understand how to properly connect a potentiometer to the Nano Matter, take the following image as a reference:
15061506

1507-
![ADC input example wiring](assets/adc-input.png)
1507+
![ADC input example wiring](assets/adc-input-2.png)
15081508

15091509
```arduino
15101510
int sensorPin = A0; // select the input pin for the potentiometer
@@ -1590,7 +1590,7 @@ void loop()
15901590
```
15911591
The DAC output should look like the image below:
15921592

1593-
![DAC sine wave output](assets/sine-output.png)
1593+
![DAC sine wave output](assets/sine-output-2.png)
15941594

15951595
The following sketch will create a **sawtooth** wave signal in the `A0` Nano Matter pin:
15961596

@@ -1618,7 +1618,7 @@ void loop()
16181618
```
16191619
The DAC output should look like the image below:
16201620

1621-
![DAC sawtooth wave output](assets/saw-output.png)
1621+
![DAC sawtooth wave output](assets/saw-output-2.png)
16221622

16231623
## Communication
16241624

0 commit comments

Comments
 (0)