Difference between revisions of "Getting started with a power supply"
Jump to navigation
Jump to search
(Initial version) |
(No difference)
|
Revision as of 17:03, 18 June 2018
For power supply configuration, use Sigrok-cli or smuview.
Sigrok-cli Examples
Scan for device (while e.g. a Korad KA3005P is attached):
sigrok-cli --driver=korad-kaxxxxp:conn=/dev/ttyACM0 --scan
Show device options (while e.g. a Korad KA3005P is attached):
sigrok-cli --driver=korad-kaxxxxp:conn=/dev/ttyACM0 --show
Set output voltage (while e.g. a Korad KA3005P is attached):
sigrok-cli --driver=korad-kaxxxxp:conn=/dev/ttyACM0 --config "voltage_target=3.3" --set
Enable output (while e.g. a Korad KA3005P is attached):
sigrok-cli --driver=korad-kaxxxxp:conn=/dev/ttyACM0 --config "enabled=on" --set
Get continuous readings for device (while e.g. a Korad KA3005P is attached):
sigrok-cli --driver=korad-kaxxxxp:conn=/dev/ttyACM0 --continuous
Write readings to a file until you press CTRL-C (while e.g. a Korad KA3005P is attached):
(Note: you can open up another terminal and use "tail -f readings.log" to watch the readings as they come in)
sigrok-cli --driver=korad-kaxxxxp:conn=/dev/ttyACM0 --continuous -o readings.log -O csv