Quote:
Originally Posted by apalrd
192.168.0.90 I think
If that dosent work then its 192.168.1.90
Try running the Axis Camera Setup tool. That'll configure it too.
You also need to change the password of the Axis cam as described in the control system docs.
|
192.168.0.90 is correct.
You can use the camera and get video with these lines:
Code:
#include "AxisCamera2010.h" // make sure you add "-I(WIND_BASE)/target/h/WPIlib/Vision" to your include paths
// or include the folder in your #include
AxisCamera &camera = AxisCamera::getInstance();
camera.writeResolution(k160x120);
camera.writeBrightness(0);
If everything is installed correctly, this will work.