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 .NET 8 firmware path and config route example #483

Merged
merged 1 commit into from
Feb 18, 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
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,22 @@ meadow firmware download
meadow firmware write
```

### List available Meadow devices

```
meadow list ports
```

You can then specify which port to use for future commands (replace `{port-name}` to your desired device port, such as `COM3` on Windows or `/dev/tty.usbmodem336F336D30361` on macOS).

```
meadow config route {port-name}
```

### Listen for Meadow Console.WriteLine

After configuring a route to the desired Meadow device.

```
meadow listen
```
Expand Down Expand Up @@ -83,5 +98,7 @@ dotnet tool install WildernessLabs.Meadow.CLI --global

If you need to find or clear out any of the OS download files retrieved by Meadow.CLI, they are located in a WildernessLabs folder in the user directory.

* macOS: `~/.local/share/WildernessLabs/Firmware/`
* Windows: `%LOCALAPPDATA%\WildernessLabs\Firmware`
* macOS
* .NET 8 or newer: `~/Library/Application Support/WildernessLabs/Firmware`
* .NET 7 or earlier: `~/.local/share/WildernessLabs/Firmware/`
Loading