void VuMeter::paint(Graphics &g) { Image myStrip = ImageCache::getFromMemory(BinaryData::Meter_140x8_png, BinaryData::Meter_140x8_pngSize); g.drawImage(myStrip, 0, 0, 140, 8, 0, 0, 140, 8); if ( v <= 0 ) return; const int totalBlocks = 46; int numBlocks = roundToInt(totalBlocks * v); if ( numBlocks > 46 ) numBlocks = totalBloc
| 335 | } |
| 336 | */ |
| 337 | LcdDisplay::LcdDisplay() { |
| 338 | paramMsg = "DEXED " DEXED_VERSION; |
| 339 | } |
| 340 | |
| 341 | void LcdDisplay::setSystemMsg(String msg) { |
| 342 | paramMsg = msg; |
nothing calls this directly
no outgoing calls
no test coverage detected