Example how to read and write a single register.
#include <ChimeraTK/Device.h>
#include <ChimeraTK/Utilities.h>
#include <iostream>
temperatureSetPoint.
read();
std::cout << "Current temperature set point is " << temperatureSetPoint << std::endl;
temperatureSetPoint += 1.5;
std::cout << "Temperature set point changed to " << temperatureSetPoint << std::endl;
temperatureSetPoint.
write();
return 0;
}