Skip to content

Commit 033eebb

Browse files
committed
Merge branch 'main' into jacobhylen/P&M-launch
2 parents a9f5b15 + 3f2d019 commit 033eebb

File tree

22 files changed

+129
-270
lines changed

22 files changed

+129
-270
lines changed

.github/workflows/deploy-prd.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

.github/workflows/deploy-stg.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

content/arduino-cloud/02.hardware/05.cellular/cellular.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ A number of Arduino boards are able to connect to the Arduino Cloud using a sim
1717

1818
Connection through cellular networks can be considered in remote areas where there's no Wi-Fi, or in mobile projects (such as cargo tracking).
1919

20-
***For more information, visit the [Arduino SIM page](https://store.arduino.cc/digital/sim).***
21-
2220
***Note that a secured connection is a memory intense operation, so there's not a lot of memory for the user application (e.g. around 2.6 kB on the MKR GSM 1400). Using a lot of Arduino Cloud variables may cause the sketch to run out of memory on boards which don't offload the SSL stack and make it crash.***
2321

2422
## Setup
@@ -36,12 +34,3 @@ To configure a cellular board, follow the steps below:
3634
Your board is now configured and ready to be used in the Arduino Cloud.
3735

3836
To get started, check out the official [Getting Started (Arduino / C++)](/arduino-cloud/guides/arduino-c) guide. This will guide you to successfully send data between your board and Arduino Cloud.
39-
40-
## Network Configuration
41-
42-
When you attach your board to a Thing, you will need to enter some credentials. With an Arduino SIM, configure it as:
43-
44-
- **APN** - `prepay.pelion`
45-
- **PIN** - `0000`
46-
- **Username** - `arduino`
47-
- **Password** - `arduino`
Loading
Loading
Loading

content/arduino-cloud/06.features/11.webhooks/iot-cloud-webhooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Linking a webhook to a Thing is a quite simple process, follow the steps below t
7777

7878
**4.** Add your **Device**, and configure your **Network** from the right side menu.
7979

80-
**5.** Click on "**Set Webhook**", one the bottom left corner.
80+
**5.** In the same menu to the right, click "**Configure**" under the "**Data Forwarding (Webhook)**" menu.
8181

8282
![Set Webhook](./assets/webhooks-02.png)
8383

content/hardware/01.mkr/01.boards/mkr-gsm-1400/tutorials/gsm-send-sms/gsm-send-sms.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ In this tutorial, we will create a simple sketch that allows us to send a text m
2626

2727
The sketch will be programmed to record input from the Serial Monitor, where we can enter a number and a message, and send it.
2828

29-
>**Note:** The Arduino SIM card does not work with this tutorial. A SIM card with a plan from an operator in your country is required.
30-
3129
## Goals
3230

3331
The goals of this tutorial are:

content/hardware/01.mkr/01.boards/mkr-nb-1500/tutorials/nb-send-sms/nb-send-sms.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ The message is sent over Narrow Band IoT (NB IoT) or LTE CAT M1 network.
2929

3030
The sketch will be setup to record input from the Serial Monitor, where we can enter a number and a message, and send it.
3131

32-
>**Note:** The Arduino SIM card does not work with this tutorial. A SIM card with a plan from an operator in your country is required.
33-
3432
## Goals
3533

3634
The goals of this tutorial are:

content/hardware/08.edu/solution-and-kits/alvik/product.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Alvik
33
url_shop: https://store.arduino.cc/products/alvik
4-
certifications: [CE, UKCA]
4+
certifications: [CE, UKCA, RoHS]
55
primary_button_url: /tutorials/alvik/getting-started
66
primary_button_title: Get Started
77
secondary_button_url: https://courses.arduino.cc/explore-robotics-micropython/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
title: PLC Starter Kit
33
sku: [AKX00051]
4-
certifications: [CE, UKCA]
4+
certifications: [CE, UKCA, RoHS]
55
---

content/micropython/01.basics/06.board-examples/board-examples.md

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,20 @@ Prints the accelerometer and gyroscope values in the Serial Monitor.
7272
```python
7373
import time
7474
from lsm6dsox import LSM6DSOX
75-
7675
from machine import Pin, I2C
76+
77+
# Initialize the LSM6DSOX sensor with I2C interface
7778
lsm = LSM6DSOX(I2C(0, scl=Pin(13), sda=Pin(12)))
7879

79-
while (True):
80-
print('Accelerometer: x:{:>8.3f} y:{:>8.3f} z:{:>8.3f}'.format(*lsm.read_accel()))
81-
print('Gyroscope: x:{:>8.3f} y:{:>8.3f} z:{:>8.3f}'.format(*lsm.read_gyro()))
80+
while True:
81+
# Read accelerometer values
82+
accel_values = lsm.accel()
83+
print('Accelerometer: x:{:>8.3f} y:{:>8.3f} z:{:>8.3f}'.format(*accel_values))
84+
85+
# Read gyroscope values
86+
gyro_values = lsm.gyro()
87+
print('Gyroscope: x:{:>8.3f} y:{:>8.3f} z:{:>8.3f}'.format(*gyro_values))
88+
8289
print("")
8390
time.sleep_ms(100)
8491
```
@@ -791,7 +798,7 @@ while (True):
791798

792799
#### Temperature & Humidity (HTS221)
793800

794-
Access the `temperature` & `humidity` values from the HTS221 sensor.
801+
Access the `temperature` & `humidity` values from the HTS221 sensor (Nano 33 BLE Sense).
795802

796803
```python
797804
import time
@@ -808,6 +815,25 @@ while (True):
808815
time.sleep_ms(100)
809816
```
810817

818+
#### Temperature & Humidity (HS3003)
819+
820+
Access the `temperature` & `humidity` values from the HTS221 sensor (Nano 33 BLE Sense Rev2).
821+
822+
```python
823+
import time
824+
from hs3003 import HS3003
825+
from machine import Pin, I2C
826+
827+
bus = I2C(1, scl=Pin(15), sda=Pin(14))
828+
hts = HS3003(bus)
829+
830+
while True:
831+
rH = hts.humidity()
832+
temp = hts.temperature()
833+
print ("rH: %.2f%% T: %.2fC" %(rH, temp))
834+
time.sleep_ms(100)
835+
```
836+
811837
#### Pressure (LPS22)
812838

813839
Access the `pressure` values from the LPS22 sensor.
Loading
Loading

0 commit comments

Comments
 (0)