@Teddy, what are the properties set to in the designer for the Arduino101Current component? I have an intuition about why this is happening but need some more data.
Yep. This is my fault I think. The extension code expects short (2-byte) values but the sketch converts the [0,1023] range to [0,255] and stores it in a single byte, so what you're seeing is really the 2-byte interpretation of A0 and A1. As a short-term solution you could use the bitwise-and block with 255 to get just the value for A0. Longer term we will need to update the extension code to only report the single pin.
@ewpatton - I would love to get 1024 resolution instead of 255!
The Current Sensor ACS712-20 returns values from 2.5v to 0v in steps of 100mV~1A (0A-20A) and the resolution, for now, is simply too coarse to use in real-life applications.
I'll look into seeing if we could do an update for this but I'm not sure how long it would take to turn that around. I need to check to see if I have an Arduino 101 at home as we're not allowed in the office right now due to the pandemic.