Hello all!
Are there any examples for 4-Digit Display avaliable? What we are currently using is GrovePi library referenced in UWP application. I’ve already made a search on your Github profile and forum, but was unable to find anything useful.
#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);
}
}
Any useful documentation for using SetIndividualSegment or SetScore? The task i am trying to accomplish is quite simple - just show the number 1234 on the 4-digit display.
Thank you for your kind help!