Dokit
Internal development documentation
Loading...
Searching...
No Matches
CurrentRange Namespace Reference

Encapsulates convenience functions for working with current ranges. More...

Functions

QString toString (const PokitProduct product, const quint8 range)
 Returns product's current range as a human-friendly string.
 
QVariant maxValue (const PokitProduct product, const quint8 range)
 Returns the maximum value for product's range in (integer) microamps, or the string "Auto".
 

Detailed Description

Encapsulates convenience functions for working with current ranges.

Function Documentation

◆ maxValue()

QTPOKIT_EXPORT QVariant CurrentRange::maxValue ( const PokitProduct product,
const quint8 range )

Returns the maximum value for product's range in (integer) microamps, or the string "Auto".

If range is not a known valid value, then an null QVariant is returned.

See also
PokitMeter::maxValue(const PokitMeter::CurrentRange &range)
PokitPro::maxValue(const PokitPro::CurrentRange &range)

Definition at line 209 of file pokitproducts.cpp.

210{
211 switch (product) {
213 return PokitMeter::maxValue(static_cast<PokitMeter::CurrentRange>(range));
215 return PokitPro::maxValue(static_cast<PokitPro::CurrentRange>(range));
216 }
217 qCWarning(lc).noquote() << QCoreApplication::translate("CurrentRange",
218 "Unknown PokitProduct value: %1", "maxValue").arg((int)product);
219 return QVariant();
220}
CurrentRange
Values supported by the Pokit Meter's Range attributes in *Current modes.
Definition pokitmeter.h:22
QTPOKIT_EXPORT QVariant maxValue(const CurrentRange &range)
Returns the maximum value for range in (integer) microamps, or the string "Auto".
QTPOKIT_EXPORT QVariant maxValue(const CapacitanceRange &range)
Returns the maximum value for range in (integer) nanofarads, or the string "Auto".
Definition pokitpro.cpp:40
CurrentRange
Values supported by the Pokit Pro's Range attributes in *Current modes.
Definition pokitpro.h:33
@ PokitPro
Pokit Pro.
@ PokitMeter
Pokit Meter.
QString translate(const char *context, const char *sourceText, const char *disambiguation, int n)
QString arg(qlonglong a, int fieldWidth, int base, QChar fillChar) const const

References QString::arg(), PokitPro::maxValue(), PokitMeter::maxValue(), PokitMeter, PokitPro, and QCoreApplication::translate().

Referenced by DataLoggerService::maxValue(), DsoService::maxValue(), and MultimeterService::maxValue().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ toString()

QTPOKIT_EXPORT QString CurrentRange::toString ( const PokitProduct product,
const quint8 range )

Returns product's current range as a human-friendly string.

See also
PokitMeter::toString(const PokitMeter::CurrentRange &range)
PokitPro::toString(const PokitPro::CurrentRange &range)

Definition at line 189 of file pokitproducts.cpp.

190{
191 switch (product) {
193 return PokitMeter::toString(static_cast<PokitMeter::CurrentRange>(range));
195 return PokitPro::toString(static_cast<PokitPro::CurrentRange>(range));
196 }
197 qCWarning(lc).noquote() << QCoreApplication::translate("CurrentRange",
198 "Unknown PokitProduct value: %1", "toString").arg((int)product);
199 return QString();
200}
QTPOKIT_EXPORT QString toString(const CurrentRange &range)
Returns range as a user-friendly string.
QTPOKIT_EXPORT QString toString(const CapacitanceRange &range)
Returns range as a user-friendly string.
Definition pokitpro.cpp:25

References QString::arg(), PokitMeter, PokitPro, PokitPro::toString(), PokitMeter::toString(), and QCoreApplication::translate().

Referenced by DataLoggerService::toString(), DsoService::toString(), and MultimeterService::toString().

Here is the call graph for this function:
Here is the caller graph for this function: