mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Also update copyright to include "and other WPILib contributors" and clarify license referral language to not be restricted to FIRST teams.
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include <chrono>
|
|
#include <climits>
|
|
#include <cstdio>
|
|
#include <thread>
|
|
|
|
#include "ntcore.h"
|
|
|
|
int main() {
|
|
auto inst = nt::GetDefaultInstance();
|
|
nt::AddLogger(
|
|
inst,
|
|
[](const nt::LogMessage& msg) {
|
|
std::fputs(msg.message.c_str(), stderr);
|
|
std::fputc('\n', stderr);
|
|
},
|
|
0, UINT_MAX);
|
|
nt::StartServer(inst, "persistent.ini", "", 10000);
|
|
std::this_thread::sleep_for(std::chrono::seconds(1));
|
|
|
|
auto foo = nt::GetEntry(inst, "/foo");
|
|
nt::SetEntryValue(foo, nt::Value::MakeDouble(0.5));
|
|
nt::SetEntryFlags(foo, NT_PERSISTENT);
|
|
|
|
auto foo2 = nt::GetEntry(inst, "/foo2");
|
|
nt::SetEntryValue(foo2, nt::Value::MakeDouble(0.5));
|
|
nt::SetEntryValue(foo2, nt::Value::MakeDouble(0.7));
|
|
nt::SetEntryValue(foo2, nt::Value::MakeDouble(0.6));
|
|
nt::SetEntryValue(foo2, nt::Value::MakeDouble(0.5));
|
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(10));
|
|
}
|