I have included in my code all of the necessary telemetry operations, however nothing is showing. I have tried removing and replacing countless blocks, however there is no change. Can anybody offer some help?
Can you provide a screenshot of the program? Also understand that Telemetry is a queue - meaning you add telemetry messages to a queue of messages to send to the Driver Station, and then when you call update the telemetry currently being shown to the user is cleared and your queued telemetry messages are then shown to the user. Typically telemetry.update
is called once per loop of the main program loop, usually at the end of the loop.
For example, this is a blocks program that shows the left stick y-axis values. The telemetry message is “added” to the telemetry queue, and then the telemetry queue is updated to the Driver Station.
Understand that every time you call “update” you’re clearing any telemetry information on the screen and only showing what’s in the current queue, so be careful about calling telemetry.update
too much, it might overwrite and clear your information - especially if there’s nothing in the queue when you call telemetry.update
.