are there any firewalls on the network or computer?
did you update the dashboard to 1.1?
do you have the local dashboard option checked under setup?
have you tried installing dashboard update 1.1 on a different computer with remote dashboard selected under Driverstation setup, and correct IP?
try this code:
Code:
#include "WPILib.h"
class RobotDemo : public SimpleRobot
{
AxisCamera &cam;
public:
RobotDemo():cam(AxisCamera::GetInstance())
{
}
void Autonomous()
{
}
void Operator Control()
{
}
};