|
Re: IR reflective (tape) sensor code problems
The pluses indicate that the line has been added to the code based on the previous version (he added lines where there already were some)
The slashes tell the preprocessor to keep looking on the next line, so that
#define HI 3\
4
looks like
#define HI 3 4
to the preprocessor.
|