You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for contributing to PlotJuggler. You are great!
Problem description
I use UDP to feed plotjuggler data with timestamps. How to show the timestamps on chart's x axis?
Steps to reproduce (important)
run the following script
import socket
import math
import json
from time import sleep
sock = socket.socket(socket.AF_INET, # Internet
socket.SOCK_DGRAM) # UDP
time = 0.0
while True:
sleep(0.05)
time += 10
data = {
"timestamp": time,
"test_data": {
"cos": math.cos(time),
"sin": math.sin(time)
}
}
sock.sendto( json.dumps(data), ("127.0.0.1", 9870) )
The text was updated successfully, but these errors were encountered:
Thanks for contributing to PlotJuggler. You are great!
Problem description
I use UDP to feed plotjuggler data with timestamps. How to show the timestamps on chart's x axis?
Steps to reproduce (important)
run the following script
The text was updated successfully, but these errors were encountered: