You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Pyscan shield allows you to scan RFID and NFC tags and includes an accelerometer and light sensor.
12
12
13
+
## Getting started
14
+
1. Find the libraries for the Pyscan in the [Pycom libraries](https://github.com/pycom/pycom-libraries/releases/) repository on Github.
15
+
1. Download the files and extract them into the project folder in Pymakr
16
+
1. Click the `upload project to device` button. This will store all necessary files on the device and allow you to import them in the example `main.py`.
17
+
1. Check the REPL. If you have Pybytes activated, the example will send the sensor data to Pybytes automatically. Note that the Pyscan will return command to the REPL while it scans for NFC cards in the background. Note that the example also allows the decoding of cards by changing the variable `DECODE_CARD = True`
18
+
19
+
### Examples
20
+
The Pyscan has several examples:
21
+
*[Scanning](/tutorials/expansionboards/scanning/)
22
+
23
+
## Features
24
+
25
+

13
26
## Datasheet & Pinout
14
27
15
28
The pinout and datasheet of the Pyscan is available as a [PDF File](/gitbook/assets/pyscan-pinout.pdf)
@@ -18,7 +31,7 @@ The pinout and datasheet of the Pyscan is available as a [PDF File](/gitbook/ass
The Pysense shield allows you to sense the environment using 5 different sensors:
12
+
* Accelerometer (LIS2HH12)
13
+
* Light Sensor (LTR329ALS01)
14
+
* Pressure Sensor (MPL3115A2)
15
+
* Temperature / Humidity Sensor (SI7006A20)
11
16
12
-

17
+
## Getting started
18
+
1. Find the libraries for the Pysense in the [Pycom libraries](https://github.com/pycom/pycom-libraries/releases/) repository on Github.
19
+
1. Download the files and extract them into the project folder in Pymakr
20
+
1. Click the `upload project to device` button. This will store all necessary files on the device and allow you to import them in the example `main.py`.
21
+
1. Check the REPL. If you have Pybytes activated, the example will send the sensor data to Pybytes automatically.
22
+
23
+
24
+
### Examples
25
+
The Pysense has several examples:
26
+
*[Sensing](/tutorials/expansionboards/sensing/)
27
+
28
+
## Features
29
+
30
+

13
31
14
32
## Datasheet
15
33
@@ -24,7 +42,7 @@ The Pysense is certified for:
24
42
The pinout of the Pysense is available as a [PDF File](/gitbook/assets/pysense-pinout.pdf)
25
43
* The user button is connected to `P14`. This button can also be used to put the Pysense board in `dfu-bootloader` mode to update the firmware.
Copy file name to clipboardExpand all lines: content/datasheets/expansionboards/pysense2.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,25 @@ aliases:
7
7
- chapter/datasheets/boards/pysense2
8
8
---
9
9
10
+
The Pysense 2.0 X shield allows you to sense the environment using 5 different sensors:
11
+
* Accelerometer (LIS2HH12)
12
+
* Light Sensor (LTR329ALS01)
13
+
* Pressure Sensor (MPL3115A2)
14
+
* Temperature / Humidity Sensor (SI7006A20)
15
+
16
+
## Getting started
17
+
1. Find the libraries for the Pysense 2.0 X in the [Pycom libraries](https://github.com/pycom/pycom-libraries/releases/) repository on Github.
18
+
1. Download the files and extract them into the project folder in Pymakr
19
+
1. Click the `upload project to device` button. This will store all necessary files on the device and allow you to import them in the example `main.py`.
20
+
1. Check the REPL. If you have Pybytes activated, the example will send the sensor data to Pybytes automatically.
The Pytrack shield allows you track your location using the onboard GPS and accelerometer.
12
+
13
+
## Getting started
14
+
1. Find the libraries for the Pytrack in the [Pycom libraries](https://github.com/pycom/pycom-libraries/releases/) repository on Github.
15
+
1. Download the files and extract them into the project folder in Pymakr
16
+
1. Click the `upload project to device` button. This will store all necessary files on the device and allow you to import them in the example `main.py`.
17
+
1. Check the REPL. If you have Pybytes activated, the example will send the location data to Pybytes automatically.
Copy file name to clipboardExpand all lines: content/datasheets/expansionboards/pytrack2.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,21 @@ aliases:
7
7
- chapter/datasheets/boards/pytrack2
8
8
---
9
9
10
+
The Pytrack 2.0 X shield allows you track your location using the onboard GPS and accelerometer.
11
+
12
+
## Getting started
13
+
1. Find the libraries for the Pytrack 2.0 X in the [Pycom libraries](https://github.com/pycom/pycom-libraries/releases/) repository on Github.
14
+
1. Download the files and extract them into the project folder in Pymakr
15
+
1. Click the `upload project to device` button. This will store all necessary files on the device and allow you to import them in the example `main.py`.
16
+
1. Check the REPL. If you have Pybytes activated, the example will send the location data to Pybytes automatically.
Copy file name to clipboardExpand all lines: content/tutorials/expansionboards/_index.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ disable_breadcrumbs: true
9
9
10
10
>Note: Before using the Pysense, Pytrack and Pyscan boards, check the [GitHub](https://github.com/pycom/pycom-libraries) for the latest version of the libraries.
11
11
12
-
To use the Pysense, Pytrack or Pyscan, make a folder inside your project folder and call it `lib`. Then, copy the appropiate sensor libraries from the github repository to the folder. Always copy the `pysense.py` or `pytrack.py` and `pycoproc.py` files if you want to use the boards' functions. The `pycoproc.py` library also allows for a special sleep mode. An example for this is provided [here](../expansionboards/sleep/)
12
+
To use the Pysense, Pytrack or Pyscan, make a folder inside your project folder and call it `lib`. Then, copy the appropiate sensor libraries from the github repository to the folder. Always copy the `pysense.py` or `pytrack.py` and `pycoproc.py` files if you want to use the boards' functions. The `pycoproc.py` library also allows for a special sleep mode. An example for this is provided [here](sleep/)
13
+
14
+
*[Asset tracking](tracking/)
15
+
*[Environment sensing](sensing/)
16
+
*[Scanning RFID / NFC Tags](scanning/)
17
+
*[Pysleep](sleep/)
18
+
*[Movement detection](/accelerometer/)
13
19
14
20
15
-
*[Pygate](../expansionboards/pygate/)
16
-
*[Pysense](../expansionboards/pysense/)
17
-
*[Pysense 2.0 X](../expansionboards/pysense2/)
18
-
*[Pytrack](../expansionboards/pytrack/)
19
-
*[Pytrack 2.0 X](../expansionboards/pytrack2/)
20
-
*[Pyscan](../expansionboards/pyscan/)
21
21
22
22
23
23
>Note: Make sure to click `upload to device` to be able to `import` the appropriate libraries in your code!
0 commit comments