Go to Post My rule of thumb is that any team who's won four World Championships can count their chickens whenever they want. :p - Karthik [more]
Home
Go Back   Chief Delphi > Technical > Programming > C/C++
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
Reply
Thread Tools Rate Thread Display Modes
  #1   Spotlight this post!  
Unread 29-01-2011, 00:30
ehlochbr ehlochbr is offline
Registered User
FRC #2990
 
Join Date: Nov 2010
Location: Salem, OR
Posts: 37
ehlochbr is an unknown quantity at this point
Invalid Conversion

Hi everyone,

This is probably an easy one but I'm just not seeing the answer. I'm trying to incorporate code for the IR sensors and everything seems fine except for one little error that says "invalid conversion from "int" to "DigitalInput."

Here's a snapshot of some of the code.

Code:
class RobotDemo : public SimpleRobot
{
	RobotDrive myRobot; // robot drive system
	Gamepad controller;
	Jaguar one;
	Jaguar two;
	Jaguar three;
	Jaguar four;
	DigitalInput *left;			// digital inputs for line tracking sensors
	DigitalInput *middle;
	DigitalInput *right;
	DriverStation *ds;
	AxisCamera& camera;
	
	
public:
	RobotDemo(void):
		myRobot(9, 10, 2, 1),	// these must be initialized in the same order
		controller(1),
		one(9),
		two(10),
		three(2),
		four(1),
		left(1),
		middle(2),
		right(3),
		ds(DriverStation::GetInstance()),
		camera(AxisCamera::GetInstance())
		
	{   <------- ERROR HERE

		GetWatchdog().SetExpiration(0.1);
Thanks for your help!
Reply With Quote
  #2   Spotlight this post!  
Unread 29-01-2011, 02:29
shandrin shandrin is offline
Registered User
AKA: Shan Johnson Sevcik
FRC #0057 (The Leopards)
Team Role: Mentor
 
Join Date: Sep 2005
Rookie Year: 2005
Location: Houston TX
Posts: 1
shandrin is a jewel in the roughshandrin is a jewel in the roughshandrin is a jewel in the roughshandrin is a jewel in the rough
Send a message via AIM to shandrin
Re: Invalid Conversion

The problem is that you're declaring pointers to DigitalInputs, and then trying to initialize them in the initialization list. You either need to declare them as actual DigitalInput objects (no *) or instead of left(1), middle(2), right(3), you need to have inside the constructor (where you note "error here"):
left = new DigitalInput(1);
middle = new DigitalInput(2);
right = new DigitalInput(3);

Hope that helps!
Reply With Quote
Reply


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 14:11.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi