View Single Post
  #29   Spotlight this post!  
Unread 13-04-2010, 17:33
byteit101's Avatar
byteit101 byteit101 is offline
WPILib maintainer (WPI)
AKA: Patrick Plenefisch
no team (The Cat Attack (Formerly))
Team Role: Programmer
 
Join Date: Jan 2009
Rookie Year: 2009
Location: Worcester
Posts: 699
byteit101 is a glorious beacon of lightbyteit101 is a glorious beacon of lightbyteit101 is a glorious beacon of lightbyteit101 is a glorious beacon of lightbyteit101 is a glorious beacon of lightbyteit101 is a glorious beacon of light
Re: ZomB: a C# Drag and Drop Dashboard

actually, I might have just found the problem.
the first thing I want you to do is open ZDashboard.java, and find the line (near the bottom) that says dash.addString(prints + ":451@@@");
add dash.commit(); just after that. the end of the file will look like this:
Code:
...

   public  void var(String name, double value) {
        AddDebugVariable(name, String.valueOf(value));
    }

   public  void Send() {
        dash.addString(prints + ":451@@@");
        dash.commit();//Add this line
        prints = "@@@451:|";
    }
}
once you add this, recompile, redownload, and re-test. If it does not work, do what I said above (with wireshark)
__________________
Bubble Wrap: programmers rewards
Watchdog.Kill();
printf("Watchdog is Dead, Celebrate!");
How to make a self aware robot: while (∞) cout<<(sqrt(-∞)/-0);
Previously FRC 451 (The Cat Attack)
Now part of the class of 2016 at WPI & helping on WPILib