I'm replying quite late to this, but I'm doing it anyway.
Are you using the Arudino sketch provided by the website you're mentioning?
What happens in that sketch is that it does send three pairs of values, but the last one is sent with the println method which attaches the carriage return and line feed to the transferred string.
What you need to do is probably this:
[comport]
|
[sel 10 13] <- these are the line feed and carriage return ASCII values
| |
| ____[repack 9] <- repack should probably be 9 cause you're gonna get
a three digit number (e.g. 100 will be 49 48 48 (this is ASCII)
|
[unpack f f f f f f f f f]
Still, receiving data in ASCII is quite cumbersome (at least for me), cause after [unpack] you have to figure out what number these ASCII values represent. You'd be better off using the Serial.write method in Arduino, but that's only 8bit, so you won't be getting values higher that 255 (if it goes higher it wraps around to 0). If you're still having trouble I'll send you a sketch and a patch that read an accelerometer (without using the library you're mentioning though).