Thread: No camera feed
View Single Post
  #4   Spotlight this post!  
Unread 19-02-2010, 18:30
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: No camera feed

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()
	{
	
	}
};
__________________
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
Reply With Quote