tg8934, I can somewhat agree because I had the same trouble trying to figure out how to handle music with the new LCD. However, after digging deeper and talking with a few people with more knowledge than my own, it was brought to my attention that although the datasheet lacks demo code, it does contain all of the necessary information to do nearly anything with music notes. If you have working knowledge of using the propeller and some basic objects like Full Duplex Serial or Simple Serial, you would also have the required knowledge to make the LCD tend to your musical needs. Of course, for us newbies, we don't already have that fully working knowlede. Here is a breakdown of how I figured things out:
To send commands from the command set, the datasheet has you covered by explaining that the appropriate bytes need to be sent. For example, to clear the screen and turn on the backlight:
Code:
' for the propeller
lcd.tx(12)
lcd.tx(17)
'for a stamp
SEROUT TxPin, Baud19200, [12]
SEROUT TxPin, Baud19200, [17]
So, using the same methods, we can send commands from the command set table to play an 'A' quarter note. Decimal 210 sets the note length to a quarter and decimal 220 plays an A note at whatever length and scale is currently active.
Code:
' for the propeller
lcd.tx(210)
lcd.tx(220)
'for a stamp
SEROUT TxPin, Baud19200, [210]
SEROUT TxPin, Baud19200, [220]
So, here is a short little bit of SPIN code where I laid out the music data in a DAT table
Code:
' messing with music
repeat idx from 0 to 8 ' send the first 8 "byte sets" to the LCD
lcd.tx(muzak[idx])
repeat idx from 0 to 8 ' send the 2nd 8 "bytes sets" to the LCD
lcd.tx(muzak2[idx])
DAT
Muzak byte 210, 216, 220, 226, 230, 217, 226, 230, 220
' 1/16, 4th, A , D#, G, 5th, D# , G , A
Muzak2 byte 210, 216, 220, 220, 220, 211, 220, 220, 220
' 1/16, 4th, A , A , A , 1/8, A , A , A
Once a length or scale has been setThe entire code and more explanations for it is on this thread here, where someone had the same question as you.
As for reading music, here are a couple simple pictures that help me.
Lettered music scale:

Note length explanation:
Bookmarks