Documentation
LogitechLCDWrapper.MonoLCDScreen wrapper = new LogitechLCDWrapper.MonoLCDScreen("test MONO");
wrapper.DisplayText("Foo Bar", 0);
This will display the string "Foo Bar" on line 0 of the screen (first line).
Depending of the screen, you can have up to 8 lines to display text.
If you input an incorrect line number, the text will be diplayed on the line mod maxLineNumber
wrapper.SetPixel(0,0,true);
Were the first two double are pixel position (x,y) and the bool value is wether the pixel is on or off.wrapper.BeginDrawing();
wrapper.GraphicDevice.DrawEllipse(System.Drawing.Pens.Black,80, 21, 10,10 ); wrapper.EndDrawing();
Français
LogitechLCDWrapper.MonoLCDScreen wrapper = new LogitechLCDWrapper.MonoLCDScreen("test MONO");
wrapper.DisplayText("Foo Bar", 0);
Cela va afficher la chaine "Foo Bar" sur la ligne 0 de l'écran (la première ligne)
Selon le type d'écran, vous pouvez avoir jusqu'à 8 ligne d'affichées.
Si vous mettez un numéro de ligne incorrect, le texte sera affiché sur la ligne : ligne mod maxLineNumber
wrapper.SetPixel(0,0,true);
Les deux premiers double sont la position du pixel (x,y) et le booléen détermine si le pixel est allumé ou non.wrapper.BeginDrawing();
wrapper.GraphicDevice.DrawEllipse(System.Drawing.Pens.Black,80, 21, 10,10 ); wrapper.EndDrawing();