View Single Post
  #1   Spotlight this post!  
Unread 21-03-2013, 13:08
fovea1959's Avatar
fovea1959 fovea1959 is offline
Herder of programmers
AKA: Doug Wegscheid
FRC #3620 (The Average Joes)
Team Role: Mentor
 
Join Date: Jan 2011
Rookie Year: 2011
Location: St Joseph
Posts: 330
fovea1959 will become famous soon enough
network tables and arrays

have a labview robot, want to write to it's network tables from a java app on driver station. That works great, but now I want to write an array of numbers.

If I write a array of numbers to the network table from labview, Java sees it as an Object[] containing Doubles. If I try to construct the same using

networkTable.putValue ("array", new Object[] { double1, double2 } );

I get an IllegalArgumentType: Invalid Type exception.

Is what I am attempting doable?
Reply With Quote