File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 3
3
"author" : " Envox <eez@envox.hr>" ,
4
4
"description" : " EEZ Studio for building standalone dashboard applications" ,
5
5
"repository" : " https://github.com/eez-open/studio" ,
6
- "version" : " 0.0.58 " ,
6
+ "version" : " 0.0.59 " ,
7
7
"revision" : " 1" ,
8
8
"license" : " GPL-3.0-only" ,
9
9
"files" : [" packages" , " libs" , " resources" ]
Original file line number Diff line number Diff line change @@ -231,7 +231,10 @@ export class ModbusActionComponent extends ActionComponent {
231
231
232
232
let connectionId =
233
233
connectionObject instanceof SerialConnection
234
- ? "serial-" + connectionObject . connectionId
234
+ ? "serial-" +
235
+ connectionObject . connectionId +
236
+ "-" +
237
+ timeout
235
238
: "tcp-" + connectionObject . id ;
236
239
237
240
let client ;
Original file line number Diff line number Diff line change @@ -114,8 +114,8 @@ export class LVGLArcWidget extends LVGLWidget {
114
114
rangeMaxType : "literal" ,
115
115
value : 25 ,
116
116
valueType : "literal" ,
117
- bgStartAngle : 120 ,
118
- bgEndAngle : 60 ,
117
+ bgStartAngle : 135 ,
118
+ bgEndAngle : 45 ,
119
119
mode : "NORMAL" ,
120
120
rotation : 0
121
121
} ,
@@ -291,11 +291,11 @@ export class LVGLArcWidget extends LVGLWidget {
291
291
//}
292
292
}
293
293
294
- if ( this . bgStartAngle != 120 ) {
294
+ if ( this . bgStartAngle != 135 ) {
295
295
build . line ( `lv_arc_set_bg_start_angle(obj, ${ this . bgStartAngle } );` ) ;
296
296
}
297
297
298
- if ( this . bgEndAngle != 0 ) {
298
+ if ( this . bgEndAngle != 45 ) {
299
299
build . line ( `lv_arc_set_bg_end_angle(obj, ${ this . bgEndAngle } );` ) ;
300
300
}
301
301
You can’t perform that action at this time.
0 commit comments