-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSMUBasicUsage.cpp
48 lines (38 loc) · 1.29 KB
/
SMUBasicUsage.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <iostream>
#include "Device.h"
#include "devices/KEI2600.h"
#include "ctlib/Logging.hpp"
#include <thread>
void check_error_code(PIL_ERROR_CODE code) {
if (code != PIL_ERROR_CODE::PIL_NO_ERROR) {
std::cout << "The last function returned an error code indicating something went wrong." << std::endl;
throw *new std::runtime_error("");
}
}
void useSMU() {
std::string ip = "132.231.14.168";
PIL::Logging logger(PIL::INFO, nullptr);
auto *smu = new KEI2600(ip, 2000, &logger, Device::SEND_METHOD::DIRECT_SEND);
PIL_ERROR_CODE errorCode;
errorCode = smu->Connect();
check_error_code(errorCode);
errorCode = smu->setLevel(SMU::VOLTAGE, SMU::CHANNEL_A, 0.42, false);
check_error_code(errorCode);
double voltage;
for (int i = 0; i < 10; ++i) {
errorCode = smu->setLevel(SMU::VOLTAGE, SMU::CHANNEL_A, i / 100.0, false);
check_error_code(errorCode);
smu->measure(SMU::VOLTAGE, SMU::CHANNEL_A, &voltage, false);
std::cout << "Measured " << std::to_string(voltage) << "V on CHANNEL_A" << std::endl;
smu->delay(0.1);
}
smu->Disconnect();
}
int main() {
try {
useSMU();
} catch (std::runtime_error &ignored) {
std::cout << "Graceful exit" << std::endl;
}
return 0;
}