diff --git a/CHANGELOG.md b/CHANGELOG.md index 14be3b2b..14d8b354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Show differences when local and remote parameters do not match by @bleykauf in https://github.com/linien-org/linien/pull/400 * Show voltage on the x-axis when sweeping by @bleykauf in https://github.com/linien-org/linien/pull/404 +### Fixed + +* Fixed example code in the readme by @bleykauf in https://github.com/linien-org/linien/pull/404, thanks to @Andrew-wi for reporting this issue + ## [2.0.4] - 2024-05-30 ### Fixed diff --git a/README.md b/README.md index 80b9ef0f..9932379b 100644 --- a/README.md +++ b/README.md @@ -89,10 +89,10 @@ from linien_client.deploy import install_remote_server device = Device( host="rp-xxxxxx.local", - user="root", + username="root", password="root" ) -instalL_remote_server(device) +install_remote_server(device) ``` Finally, you can install the server manually, by connecting to the RedPitaya via SSH and @@ -240,7 +240,7 @@ from linien_common.common import MHz, Vpp, ANALOG_OUT_V dev = Device( host="rp-xxxxxx.local", - user="root", + username="root", password="root" ) c = LinienClient(dev) @@ -335,7 +335,7 @@ from time import sleep c = LinienClient( host="rp-xxxxxx.local", - user="root", + username="root", password="root" ) c.connect(autostart_server=True, use_parameter_cache=True)