Skip to content

A Fork From quick0831/NT-Viewer-Python, now maintained by FRC8585

License

Notifications You must be signed in to change notification settings

frc8585/NT-Viewer-Python

 
 

Repository files navigation

NT Viewer Python

A Simple NetworkTable Viewer made by Quick Chang

FRC Team 8585 in Taiwan

This repository is licensed under MIT Licence

NT temporary server

For testing only

from networktables import NetworkTables
import time
n = NetworkTables.create()
n.initialize()
sd = n.getTable("SmartDashboard")

s=n.getTable("/SmartDashboard/StupidDashboard")
s.putNumber("a", 1)
s.putString("b", "OAO")

i = 0
while True:
    sd.putNumber("robotTime", i)
    print("robotTime:", sd.getNumber("robotTime", -1))
    time.sleep(1)
    i += 1

About

A Fork From quick0831/NT-Viewer-Python, now maintained by FRC8585

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 85.2%
  • Python 14.8%