I thought writing B1110111111111111
should have worked but it throws this error
Arduino: 1.8.15 (Windows 10), Board: "Arduino Nano, ATmega328P"
C:\Users\*********\Documents\Arduino\synth\synth.ino: In function 'void loop()':
synth:46:12: error: 'B1111111111111111' was not declared in this scope
case B1111111111111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:46:12: note: suggested alternative: 'B11111111'
case B1111111111111111:
^~~~~~~~~~~~~~~~~
B11111111
C:\Users\*********\Documents\Arduino\synth\synth.ino:49:7: warning: large integer implicitly truncated to unsigned type [-Woverflow]
case 1111111111111101:
^~~~
synth:53:12: error: 'B1111111111111011' was not declared in this scope
case B1111111111111011:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:53:12: note: suggested alternative: 'B11111101'
case B1111111111111011:
^~~~~~~~~~~~~~~~~
B11111101
synth:57:12: error: 'B1111111111110111' was not declared in this scope
case B1111111111110111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:57:12: note: suggested alternative: 'B11111101'
case B1111111111110111:
^~~~~~~~~~~~~~~~~
B11111101
synth:61:12: error: 'B1111111111101111' was not declared in this scope
case B1111111111101111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:61:12: note: suggested alternative: 'B11101111'
case B1111111111101111:
^~~~~~~~~~~~~~~~~
B11101111
synth:65:12: error: 'B1111111111011111' was not declared in this scope
case B1111111111011111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:65:12: note: suggested alternative: 'B11101111'
case B1111111111011111:
^~~~~~~~~~~~~~~~~
B11101111
synth:69:12: error: 'B1111111110111111' was not declared in this scope
case B1111111110111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:69:12: note: suggested alternative: 'B11101111'
case B1111111110111111:
^~~~~~~~~~~~~~~~~
B11101111
synth:73:12: error: 'B1111111101111111' was not declared in this scope
case B1111111101111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:73:12: note: suggested alternative: 'B01111111'
case B1111111101111111:
^~~~~~~~~~~~~~~~~
B01111111
synth:77:12: error: 'B1111111011111111' was not declared in this scope
case B1111111011111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:77:12: note: suggested alternative: 'B01111111'
case B1111111011111111:
^~~~~~~~~~~~~~~~~
B01111111
synth:81:12: error: 'B1111110111111111' was not declared in this scope
case B1111110111111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:81:12: note: suggested alternative: 'B01111111'
case B1111110111111111:
^~~~~~~~~~~~~~~~~
B01111111
synth:85:12: error: 'B1111101111111111' was not declared in this scope
case B1111101111111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:85:12: note: suggested alternative: 'B01111111'
case B1111101111111111:
^~~~~~~~~~~~~~~~~
B01111111
synth:89:12: error: 'B1111011111111111' was not declared in this scope
case B1111011111111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:89:12: note: suggested alternative: 'B01111111'
case B1111011111111111:
^~~~~~~~~~~~~~~~~
B01111111
synth:93:12: error: 'B1110111111111111' was not declared in this scope
case B1110111111111111:
^~~~~~~~~~~~~~~~~
C:\Users\*********\Documents\Arduino\synth\synth.ino:93:12: note: suggested alternative: 'B01111111'
case B1110111111111111:
^~~~~~~~~~~~~~~~~
B01111111
exit status 1
'B1111111111111111' was not declared in this scope
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.