Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ There are two ways to install this driver.
Install the driver with [`mpremote`](https://docs.micropython.org/en/latest/reference/mpremote.html) like this:

```bash
mpremote mip install github:simonprickett/micropython-cratedb
mpremote mip install github:crate/micropython-cratedb
```

This will install the driver into `/lib` on the device, along with the [base64](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/base64) module from `micropython-lib`.
Expand All @@ -33,7 +33,7 @@ wlan = network.WLAN(network.STA_IF)
wlan.active(True)
wlan.connect("<your wifi SSID>", "<your wifi password>")
wlan.isconnected() # Run this until it returns True
mip.install("github:simonprickett/micropython-cratedb")
mip.install("github:crate/micropython-cratedb")
```

## Using the Driver in a MicroPython Script
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"urls": [
[
"cratedb.py",
"github:simonprickett/micropython-cratedb/cratedb.py"
"github:crate/micropython-cratedb/cratedb.py"
]
],
"deps": [
Expand Down