WPILibC++ 2023.4.3-108-ge5452e3
|
Functions | |
bool | nt::SetDoubleArray (NT_Handle pubentry, std::span< const double > value, int64_t time=0) |
Publish a new value. More... | |
bool | nt::SetDefaultDoubleArray (NT_Handle pubentry, std::span< const double > defaultValue) |
Publish a default value. More... | |
std::vector< double > | nt::GetDoubleArray (NT_Handle subentry, std::span< const double > defaultValue) |
Get the last published value. More... | |
TimestampedDoubleArray | nt::GetAtomicDoubleArray (NT_Handle subentry, std::span< const double > defaultValue) |
Get the last published value along with its timestamp. More... | |
std::vector< TimestampedDoubleArray > | nt::ReadQueueDoubleArray (NT_Handle subentry) |
Get an array of all value changes since the last call to ReadQueue. More... | |
std::vector< std::vector< double > > | nt::ReadQueueValuesDoubleArray (NT_Handle subentry) |
Get an array of all value changes since the last call to ReadQueue. More... | |
std::span< double > | nt::GetDoubleArray (NT_Handle subentry, wpi::SmallVectorImpl< double > &buf, std::span< const double > defaultValue) |
TimestampedDoubleArrayView | nt::GetAtomicDoubleArray (NT_Handle subentry, wpi::SmallVectorImpl< double > &buf, std::span< const double > defaultValue) |
TimestampedDoubleArray nt::GetAtomicDoubleArray | ( | NT_Handle | subentry, |
std::span< const double > | defaultValue | ||
) |
Get the last published value along with its timestamp.
If no value has been published, returns the passed defaultValue and a timestamp of 0.
subentry | subscriber or entry handle |
defaultValue | default value to return if no value has been published |
TimestampedDoubleArrayView nt::GetAtomicDoubleArray | ( | NT_Handle | subentry, |
wpi::SmallVectorImpl< double > & | buf, | ||
std::span< const double > | defaultValue | ||
) |
std::vector< double > nt::GetDoubleArray | ( | NT_Handle | subentry, |
std::span< const double > | defaultValue | ||
) |
Get the last published value.
If no value has been published, returns the passed defaultValue.
subentry | subscriber or entry handle |
defaultValue | default value to return if no value has been published |
std::span< double > nt::GetDoubleArray | ( | NT_Handle | subentry, |
wpi::SmallVectorImpl< double > & | buf, | ||
std::span< const double > | defaultValue | ||
) |
std::vector< TimestampedDoubleArray > nt::ReadQueueDoubleArray | ( | NT_Handle | subentry | ) |
Get an array of all value changes since the last call to ReadQueue.
Also provides a timestamp for each value.
subentry | subscriber or entry handle |
std::vector< std::vector< double > > nt::ReadQueueValuesDoubleArray | ( | NT_Handle | subentry | ) |
Get an array of all value changes since the last call to ReadQueue.
subentry | subscriber or entry handle |
bool nt::SetDefaultDoubleArray | ( | NT_Handle | pubentry, |
std::span< const double > | defaultValue | ||
) |
Publish a default value.
On reconnect, a default value will never be used in preference to a published value.
pubentry | publisher or entry handle |
defaultValue | default value |
bool nt::SetDoubleArray | ( | NT_Handle | pubentry, |
std::span< const double > | value, | ||
int64_t | time = 0 |
||
) |
Publish a new value.
pubentry | publisher or entry handle |
value | value to publish |
time | timestamp; 0 indicates current NT time should be used |