Add AS OK field to AMI
This commit is contained in:
@ -67,6 +67,7 @@ protected:
|
||||
touchgfx::Shape<3> ft;
|
||||
touchgfx::PainterRGB565 ftPainter;
|
||||
touchgfx::Container init;
|
||||
touchgfx::TextAreaWithOneWildcard asOK;
|
||||
touchgfx::TextArea textArea8;
|
||||
touchgfx::TextArea textArea7;
|
||||
touchgfx::TextAreaWithOneWildcard pressRear;
|
||||
|
||||
@ -202,6 +202,12 @@ AMIViewBase::AMIViewBase()
|
||||
add(driving);
|
||||
|
||||
init.setPosition(0, 0, 480, 320);
|
||||
asOK.setPosition(68, 279, 169, 24);
|
||||
asOK.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
asOK.setLinespacing(0);
|
||||
asOK.setTypedText(touchgfx::TypedText(T___SINGLEUSE_C17G));
|
||||
init.add(asOK);
|
||||
|
||||
textArea8.setXY(68, 247);
|
||||
textArea8.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
textArea8.setLinespacing(0);
|
||||
|
||||
Reference in New Issue
Block a user