Skip to content

Commit 94b0dcc

Browse files
check fixes
1 parent 147c59b commit 94b0dcc

File tree

1 file changed

+5
-2
lines changed
  • content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-garden-automation

1 file changed

+5
-2
lines changed

content/hardware/01.mkr/01.boards/mkr-zero/tutorials/mkr-zero-garden-automation/content.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ title: 'Home Gardening Automation with MKR Zero'
33
difficulty: intermediate
44
compatible-products: [mkr-zero]
55
description: "Do you like home gardening but you've never had a green thumb? This could be the right solution for you!"
6+
tags:
7+
- Automation
8+
- Gardening
69
author: 'Benjamin Dannegård'
710
hardware:
811
- hardware/01.mkr/01.boards/mkr-zero
@@ -154,7 +157,7 @@ We'll need to add to our code the include of the library and the creation of a n
154157

155158
```arduino
156159
#include <Dps310.h>
157-
// Dps310 Opject
160+
// Dps310 Object
158161
Dps310 Dps310PressureSensor = Dps310();
159162
//more oversamplig (7 is the highest usable value) means more precision!
160163
const int dps310_oversampling = 7;
@@ -283,7 +286,7 @@ For a basic test of the display, we can start from the OLED_Hello_World example:
283286

284287
![Library example](assets/sketch-4-library-2.jpg)
285288

286-
To include the display in our main skecth, we have to include the required libraries:
289+
To include the display in our main sketch, we have to include the required libraries:
287290

288291
```arduino
289292
#include <Wire.h>

0 commit comments

Comments
 (0)