blueye.sdk.utils
utils
Functions:
-
deserialize_any_to_message
–Deserialize a protobuf Any message to a concrete message type.
-
is_scalar_type
–Check if a message is a scalar type
-
open_local_documentation
–Open a pre-built local version of the SDK documentation
deserialize_any_to_message
deserialize_any_to_message(
msg: Any,
) -> Tuple[MessageMeta, Message]
Deserialize a protobuf Any message to a concrete message type.
Parameters:
-
msg
(Any
) –The Any message to deserialize. Needs to be a message defined in the blueye.protocol package or a well-known-type (FloatValue, Int32Value, etc) from google.protobuf.wrappers_pb2
Returns:
-
Tuple[MessageMeta, Message]
–A tuple with the message type and the deserialized message.
Source code in blueye/sdk/utils.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
is_scalar_type
is_scalar_type(msg: Message) -> bool
Check if a message is a scalar type
Parameters:
-
msg
(Message
) –The message to check
Returns:
-
bool
–True if the message is a scalar type, False otherwise
Source code in blueye/sdk/utils.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
open_local_documentation
open_local_documentation()
Open a pre-built local version of the SDK documentation
Useful when you are connected to the drone wifi, and don't have access to the online version.
Source code in blueye/sdk/utils.py
24 25 26 27 28 29 30 31 32 33 34 |
|