Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add directions for using EG21 #813

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/Meadow/Meadow.OS/Cellular/Develop_Cellular_Apps/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,36 @@ Settings:
EnablePin: H10 # (required) Enable MCU pin to power the module on/off
```

### Configuring Project Lab v3 with EG21

In the case that you're using a Project Lab v3 with the EG21-GL module on mikroBUS 1 you'll need this in your `meadow.config.yaml`:

```yaml
# Device specific config
Device:
# Name of the device
Name: ProjectLabV3

# Corresponding MCU pin names for the reserved pins
# (COMX_RX pin, COM_TX pin, ENABLE pin)
ReservedPins: B15;B14;H10

# Network configuration
Network:
# Which interface should be used?
DefaultInterface: Cell
...
```

And your `EnablePin` and `Interface` in `cell.config.yaml` should be `H10` and `COM1`, respectively:

```yaml
Settings:
...
Interface: COM1 # (required) Serial interface (COM1 (default), COM4 or COM6)
EnablePin: H10 # (required) Enable MCU pin to power the module on/off
```

## Step 3: Handling Cell connection using a Meadow application

To check if you established a connection, you can use the `meadow listen` CLI command, which should return a message like this:
Expand Down
Loading