7.6 Programming the Built-in Screen
In Logo, use the show command. In Tinker, there are separate blocks for showing text and numbers. The following example repeatedly displays the text “SS1” and then followed by sensor 1’s value.
to show_sensor
forever [
show "SS1"
wait 10
show sensor1
wait 10
]
end
Make sure the screen is in the “User” page. If not, the values from the program will not be seen.