View Single Post
  #3   Spotlight this post!  
Unread 19-11-2016, 11:28
euhlmann's Avatar
euhlmann euhlmann is offline
CTO, Programmer
AKA: Erik Uhlmann
FRC #2877 (LigerBots)
Team Role: Leadership
 
Join Date: Dec 2015
Rookie Year: 2015
Location: United States
Posts: 296
euhlmann has much to be proud ofeuhlmann has much to be proud ofeuhlmann has much to be proud ofeuhlmann has much to be proud ofeuhlmann has much to be proud ofeuhlmann has much to be proud ofeuhlmann has much to be proud ofeuhlmann has much to be proud of
Re: SmartDashboard Problem

When you do this in robot code
Code:
SmartDashboard.putNumber("something", 1);
it goes on the SmartDashboard table.
So on a custom dashboard you might do (in Java)
Code:
NetworkTable sd = NetworkTable.getTable("SmartDashboard");

sd.getNumber("something"); // 1
__________________
Creator of SmartDashboard.js, an extensible nodejs/webkit replacement for SmartDashboard


https://ligerbots.org
Reply With Quote