![]() |
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 |
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! |
| All times are GMT -5. The time now is 17:45. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi