Morning. I'm using the instructions to build scoreboard from Setting up the Arduino | Build Your Own Scoreboard
I have a new issue with the Arduino software. It works perfectly on my old laptop but not my new one. Both are WIndows 10. The old laptop runs Arduino 1.6.7 & I can upload all versions the ino files.
So on my new laptop I did the following:
Installed Arduino 1.6.7
Copied the 4 folders from software2016r2 to C:\Program Files (x86)\Arduino\libraries
I then opened the scoreboard.ino file from the 2016 software, & run a verify/compile & I get this result
What am I missing?
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino: In function 'void test_mode()':
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino:168:36: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
shifterSet1.display("111222333");
^
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino:169:33: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
shifterSet2.display("444555");
^
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino: In function 'void arduino_ready()':
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino:179:44: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
cmdMessenger.sendCmd(kACK,"Arduino ready");
^
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino: In function 'void unknownCmd()':
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino:185:46: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
cmdMessenger.sendCmd(kERR,"Unknown command");
^
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino: In function 'void setup()':
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino:237:34: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
shifterSet1.display("--0--0--0");
^
C:\Users\HP\Downloads\software2016R2\software\software\scoreboard\scoreboard.ino:238:31: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
shifterSet2.display("0-0--0");
^
Sketch uses 7,320 bytes (22%) of program storage space. Maximum is 32,256 bytes.
Global variables use 695 bytes (33%) of dynamic memory, leaving 1,353 bytes for local variables. Maximum is 2,048 bytes.