ARDUINO + musical instrument shield to make a Keyboard

Thank you very much for your comment.
I replaced inputsPins with inputsPins*.*
The number of errors has decreased.
But still there were 6 error messages as I post the image-1 here.
For example,
In the void loop()
The line
_ buttonState = digitalRead(inputPins*);_
is highlighted and there's a message as
_
" incompatible types in assignment of 'int' to 'int[9]' "_
_So I also added * to all "buttonState" and "lastButtonState"
The number of errors has decreased further.
But still there were 3 error messages as I post the image-2 here.
For example,
In the void loop()
if (buttonState == HIGH) {
noteOn(0,note,100);

The line
* noteOn(0,note,100);
is highlighted and there's a message as
" invalid conversion from 'int' to 'byte' "
In my understanding, talkMIDI() is a message with 3 bytes.
How do you define the data type of noteOn()?
I feel I'm getting better with your help.
I'm looking forward your reply.
Thank you very much._


*