Skip to content

Commit 85f7637

Browse files
author
Cam Soper
authored
IoT - Minor errata (#21545)
1 parent 929dfd0 commit 85f7637

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

docs/iot/debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Debug .NET apps on Raspberry Pi
33
description: Learn how to debug .NET apps on Raspberry Pi and similar devices.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
7-
ms.topic: overview
6+
ms.date: 11/13/2020
7+
ms.topic: how-to
88
ms.prod: dotnet
99
zone_pivot_groups: ide-set-one
1010
---

docs/iot/deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: Deploy .NET apps to Raspberry Pi
3-
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
3+
description: Learn how to deploy .NET apps to Raspberry Pi.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
7-
ms.topic: overview
6+
ms.date: 11/13/2020
7+
ms.topic: how-to
88
ms.prod: dotnet
99
---
1010

1111
# Deploy .NET apps to Raspberry Pi
1212

13-
Deployment of .NET apps to Raspberry Pi is the identical to that of any other platform. Your app can run as *self-contained* or *framework-dependent* deployment modes. There are advantages to each strategy. For more information, see [.NET application publishing overview](/dotnet/core/deploying).
13+
Deployment of .NET apps to Raspberry Pi is identical to that of any other platform. Your app can run as *self-contained* or *framework-dependent* deployment modes. There are advantages to each strategy. For more information, see [.NET application publishing overview](/dotnet/core/deploying).
1414

1515
## Deploying a framework-dependent app
1616

docs/iot/includes/sftp-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Where:
1010

1111
- The `-r` option instructs `scp` to copy files recursively.
1212
- */publish-location/* is the folder you published to in the previous step.
13-
- *pi@raspberypi* is the user and host names in the format `<username>@<hostname>`.
13+
- `pi@raspberypi` is the user and host names in the format `<username>@<hostname>`.
1414
- */home/pi/deployment-location/* is the new folder on the Raspberry Pi.
1515

1616
> [!TIP]

docs/iot/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
ms.collection: collection
1212
author: camsoper
1313
ms.author: casoper
14-
ms.date: 10/20/2020
14+
ms.date: 11/13/2020
1515

1616
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1717

docs/iot/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Develop apps for IoT devices with the .NET IoT Libraries
33
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
6+
ms.date: 11/13/2020
77
ms.topic: overview
88
ms.prod: dotnet
99
---

docs/iot/quickstarts/sensehat.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Quickstart - Use .NET to drive a Raspberry Pi Sense HAT
3-
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
3+
description: Get started with .NET IoT Libraries in 5 minutes using a Sense HAT, an add-on board for Raspberry Pi.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
6+
ms.date: 11/13/2020
77
ms.topic: quickstart
88
ms.prod: dotnet
99
---
@@ -43,7 +43,7 @@ The command downloads and runs a script. The script:
4343
- Builds the project.
4444
- Runs the project.
4545

46-
Observe the console output as sensor data is displayed. The LED matrix displays a yellow pixel on a field of blue. Holding the joystick in any direction moves the yellow pixel in that direction.
46+
Observe the console output as sensor data is displayed. The LED matrix displays a yellow pixel on a field of blue. Holding the joystick in any direction moves the yellow pixel in that direction. Clicking the center joystick button causes the background to switch from blue to red.
4747

4848
## Get the source code
4949

docs/iot/tutorials/adc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: Read values from an analog-to-digital converter
3-
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
3+
description: Learn how to read variable voltage values using an analog-to-digital converter.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
6+
ms.date: 11/13/2020
77
ms.topic: tutorial
88
ms.prod: dotnet
99
---
1010
<!--markdownlint-disable DOCSMD011 -->
1111
# Read values from an analog-to-digital converter
1212

13-
An analog-to-digital converter (ADC) is a device that can read an analog input voltage value and convert it into a digital value. ADCs are used for reading various sensors, potentiometers, and other devices that change resistance based on certain conditions.
13+
An analog-to-digital converter (ADC) is a device that can read an analog input voltage value and convert it into a digital value. ADCs are used for reading values from thermistors, potentiometers, and other devices that change resistance based on certain conditions.
1414

1515
In this topic, you will use .NET to read values from an ADC as you modulate the input voltage with a potentiometer.
1616

docs/iot/tutorials/blink-led.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Blink an LED
3-
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
3+
description: Learn how to blink an LED with the .NET IoT Libraries.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
7-
ms.topic: overview
6+
ms.date: 11/13/2020
7+
ms.topic: tutorial
88
ms.prod: dotnet
99
---
1010

docs/iot/tutorials/lcd-display.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Display text on an LCD
3-
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
3+
description: Learn how to display characters on a liquid crystal display with the .NET IoT Libraries.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
7-
ms.topic: overview
6+
ms.date: 11/13/2020
7+
ms.topic: tutorial
88
ms.prod: dotnet
99
---
1010
<!--markdownlint-disable DOCSMD011 -->

docs/iot/tutorials/temp-sensor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Read environmental conditions from a sensor
3-
description: Learn how .NET can be used to build applications for IoT devices and scenarios.
3+
description: Learn how to read termperature, barometric pressure, and humidity with the .NET IoT Libraries.
44
author: camsoper
55
ms.author: casoper
6-
ms.date: 11/2/2020
7-
ms.topic: overview
6+
ms.date: 11/14/2020
7+
ms.topic: tutorial
88
ms.prod: dotnet
99
---
1010

0 commit comments

Comments
 (0)