Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TedSjoblom committed Mar 29, 2023
1 parent 9ea674d commit 992254f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ def unpack_spoke(envelope: cEnvelope) -> Tuple[float, np.ndarray, np.ndarray]:
radar_message = radar_message_spec.opendlv_proxy_RadarDetectionReading()
radar_message.ParseFromString(envelope.serialized_data)

LOGGER.info("Sender ID: %s", envelope.senderStamp)
str_id = str(envelope.sender_stamp)
str_time = str(envelope.sender_timestamp)

LOGGER.info("Sender ID: %s, time: %s", str_id, str_time)



Expand Down

0 comments on commit 992254f

Please sign in to comment.