Are there any examples for 4-Digit Display. What we are using is GrovePi library referenced in UWP application. I've already made a search on your github, but was unable to find anything useful.
Code: Select all
#region Assembly GrovePi, Version=1.0.10.0, Culture=neutral, PublicKeyToken=null
//\Lib\GrovePi.dll
#endregion
namespace GrovePi.Sensors
{
public interface IFourDigitDisplay
{
IFourDigitDisplay AllOff();
IFourDigitDisplay AllOn();
IFourDigitDisplay Initialise();
IFourDigitDisplay SetBrightness(byte brightness);
IFourDigitDisplay SetIndividualSegment(byte segment, byte value);
IFourDigitDisplay SetLedsOfSegment(byte segment, byte leds);
IFourDigitDisplay SetScore(byte left, byte right);
}
}
Thank you for your kind help!