MraaCommon constructor

MraaCommon(
  1. MraaImpl _impl,
  2. bool _noJsonLoading,
  3. bool _useGrovePi
)

Construction

Implementation

MraaCommon(this._impl, this._noJsonLoading, this._useGrovePi) {
  // Set up the pin offset for grove pi usage.
  if (_useGrovePi) {
    _grovePiPinOffset = Mraa.grovePiPinOffset;
  }
}