Rev 1828 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1828 | Rev 1829 | ||
---|---|---|---|
Line 30... | Line 30... | ||
30 | else |
30 | else |
31 | { |
31 | { |
32 | JetiBox_printfxy(6,0,"Status"); |
32 | JetiBox_printfxy(6,0,"Status"); |
33 | } |
33 | } |
34 | if(NC_ErrorCode) JetiBox_printfxy(6,0,"ERROR: %2d",NC_ErrorCode); |
34 | if(NC_ErrorCode) JetiBox_printfxy(6,0,"ERROR: %2d",NC_ErrorCode); |
35 | JetiBox_printfxy(0,1,"%4i %2i:%02i",Capacity.UsedCapacity,FlugSekunden/60,FlugSekunden%60); |
35 | JetiBox_printfxy(0,1,"%4i %2i:%02i",Capacity.RemainCapacity,FlugSekunden/60,FlugSekunden%60); |
36 | if(EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) |
36 | if(EE_Parameter.GlobalConfig & CFG_HOEHENREGELUNG) |
37 | { |
37 | { |
38 | JetiBox_printfxy(10,1,"%4im%c", (int16_t)(HoehenWert/100),VarioCharacter); |
38 | JetiBox_printfxy(10,1,"%4im%c", (int16_t)(HoehenWert/100),VarioCharacter); |
39 | } |
39 | } |
40 | } |
40 | } |
Line 57... | Line 57... | ||
57 | } |
57 | } |
Line 58... | Line 58... | ||
58 | 58 | ||
59 | void Menu_Battery(uint8_t key) |
59 | void Menu_Battery(uint8_t key) |
60 | { //0123456789ABCDEF |
60 | { //0123456789ABCDEF |
61 | JetiBox_printfxy(0,0,"%2i.%1iV %3i.%1iA", UBat/10, UBat%10, Capacity.ActualCurrent/10, Capacity.ActualCurrent%10); |
61 | JetiBox_printfxy(0,0,"%2i.%1iV %3i.%1iA", UBat/10, UBat%10, Capacity.ActualCurrent/10, Capacity.ActualCurrent%10); |
62 | JetiBox_printfxy(0,1,"%4iW %6imAh",Capacity.ActualPower, Capacity.UsedCapacity); |
62 | JetiBox_printfxy(0,1,"%4iW %6imAh",Capacity.ActualPower, Capacity.RemainCapacity); |
Line 63... | Line 63... | ||
63 | } |
63 | } |
64 | 64 |