예제 #1
0
 override public void SetOrientation(LCD.Orientation orientation) {
     BasicTypeSerializer.Put(Context,(byte)Command.SetOrientation);
     BasicTypeSerializer.Put(Context,(ushort)orientation);
 }
예제 #2
0
 protected void SetDisplay(LCD display){
     _display = display;
 }
예제 #3
0
 virtual public void SetOrientation(LCD.Orientation orientation) {
     _display.SetOrientation(orientation);
 }
예제 #4
0
 public Canvas(LCD display) {
     SetDisplay(display);
 }