Added simple time tracking
This commit is contained in:
parent
b48d2241d2
commit
6cfdcc13ce
1 changed files with 7 additions and 1 deletions
|
|
@ -1,6 +1,5 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
|
|
@ -12,9 +11,16 @@ int main(){
|
||||||
std::string ip_address {"192.168.31.136"};
|
std::string ip_address {"192.168.31.136"};
|
||||||
int port {502};
|
int port {502};
|
||||||
|
|
||||||
|
auto startTime = std::chrono::high_resolution_clock::now();
|
||||||
Dtu dtu {ip_address.c_str(), port};
|
Dtu dtu {ip_address.c_str(), port};
|
||||||
|
auto endTime = std::chrono::high_resolution_clock::now();
|
||||||
|
std::cout << "Construction time: " << std::chrono::duration_cast<std::chrono::seconds>(endTime - startTime).count() << "s" << std::endl;
|
||||||
|
|
||||||
while(true) {
|
while(true) {
|
||||||
|
auto startTime = std::chrono::high_resolution_clock::now();
|
||||||
dtu.updateMicroinverters();
|
dtu.updateMicroinverters();
|
||||||
|
auto endTime = std::chrono::high_resolution_clock::now();
|
||||||
|
std::cout << "Update time: " << std::chrono::duration_cast<std::chrono::seconds>(endTime - startTime).count() << "s" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue