mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
changed #define pins to const ints
This commit is contained in:
parent
0859fba64d
commit
a0b3e6334d
@ -15,9 +15,9 @@
|
||||
|
||||
*/
|
||||
|
||||
#define redPin 0
|
||||
#define greenPin 1
|
||||
#define bluePin 2
|
||||
const int redPin = 0; // sensor to control red color
|
||||
const int greenPin = 1; // sensor to control green color
|
||||
const int bluePin = 2; // sensor to control blue color
|
||||
|
||||
void setup()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user