commit
						c202554c5c
					
				|  | @ -392,6 +392,25 @@ void displayHeader(CommonData &commonData, GwApi::BoatValue *date, GwApi::BoatVa | |||
|             getdisplay().drawXBitmap(166, 1, swipe_bits, swipe_width, swipe_height, commonData.fgcolor); | ||||
|         } | ||||
| #endif | ||||
| #ifdef LIPO_ACCU_1200 | ||||
|         if (commonData.data.BatteryChargeStatus == 1) { | ||||
|              getdisplay().drawXBitmap(170, 1, battery_loading_bits, battery_width, battery_height, commonData.fgcolor); | ||||
|         } else { | ||||
| #ifdef VOLTAGE_SENSOR | ||||
|             if (commonData.data.batteryLevelLiPo < 10) { | ||||
|                 getdisplay().drawXBitmap(170, 1, battery_0_bits, battery_width, battery_height, commonData.fgcolor); | ||||
|             } else if (commonData.data.batteryLevelLiPo < 25) { | ||||
|                 getdisplay().drawXBitmap(170, 1, battery_25_bits, battery_width, battery_height, commonData.fgcolor); | ||||
|             } else if (commonData.data.batteryLevelLiPo < 50) { | ||||
|                 getdisplay().drawXBitmap(170, 1, battery_50_bits, battery_width, battery_height, commonData.fgcolor); | ||||
|             } else if (commonData.data.batteryLevelLiPo < 75) { | ||||
|                 getdisplay().drawXBitmap(170, 1, battery_75_bits, battery_width, battery_height, commonData.fgcolor); | ||||
|             } else { | ||||
|                 getdisplay().drawXBitmap(170, 1, battery_100_bits, battery_width, battery_height, commonData.fgcolor); | ||||
|             } | ||||
| #endif // VOLTAGE_SENSOR
 | ||||
|         } | ||||
| #endif // LIPO_ACCU_1200
 | ||||
| 
 | ||||
|         // Heartbeat as dot
 | ||||
|         getdisplay().setTextColor(commonData.fgcolor); | ||||
|  |  | |||
|  | @ -160,6 +160,46 @@ static std::map<String, unsigned char *> iconmap = { | |||
|     {"AP", ap_bits} | ||||
| }; | ||||
| 
 | ||||
| // Battery
 | ||||
| #define battery_width 24 | ||||
| #define battery_height 16 | ||||
| 
 | ||||
| static unsigned char battery_0_bits[] = { | ||||
|    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x0f, 0xff, 0xff, 0x1f, | ||||
|    0x03, 0x00, 0x18, 0x03, 0x00, 0x78, 0x03, 0x00, 0xf8, 0x03, 0x00, 0xd8, | ||||
|    0x03, 0x00, 0xd8, 0x03, 0x00, 0xd8, 0x03, 0x00, 0xf8, 0x03, 0x00, 0x78, | ||||
|    0x03, 0x00, 0x18, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0x0f, 0x00, 0x00, 0x00 }; | ||||
| 
 | ||||
| static unsigned char battery_25_bits[] = { | ||||
|    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x0f, 0xff, 0xff, 0x1f, | ||||
|    0x03, 0x00, 0x18, 0x3b, 0x00, 0x78, 0x3b, 0x00, 0xf8, 0x3b, 0x00, 0xd8, | ||||
|    0x3b, 0x00, 0xd8, 0x3b, 0x00, 0xd8, 0x3b, 0x00, 0xf8, 0x3b, 0x00, 0x78, | ||||
|    0x03, 0x00, 0x18, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0x0f, 0x00, 0x00, 0x00 }; | ||||
| 
 | ||||
| static unsigned char battery_50_bits[] = { | ||||
|    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x0f, 0xff, 0xff, 0x1f, | ||||
|    0x03, 0x00, 0x18, 0xbb, 0x03, 0x78, 0xbb, 0x03, 0xf8, 0xbb, 0x03, 0xd8, | ||||
|    0xbb, 0x03, 0xd8, 0xbb, 0x03, 0xd8, 0xbb, 0x03, 0xf8, 0xbb, 0x03, 0x78, | ||||
|    0x03, 0x00, 0x18, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0x0f, 0x00, 0x00, 0x00 }; | ||||
| 
 | ||||
| static unsigned char battery_75_bits[] = { | ||||
|    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x0f, 0xff, 0xff, 0x1f, | ||||
|    0x03, 0x00, 0x18, 0xbb, 0x3b, 0x78, 0xbb, 0x3b, 0xf8, 0xbb, 0x3b, 0xd8, | ||||
|    0xbb, 0x3b, 0xd8, 0xbb, 0x3b, 0xd8, 0xbb, 0x3b, 0xf8, 0xbb, 0x3b, 0x78, | ||||
|    0x03, 0x00, 0x18, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0x0f, 0x00, 0x00, 0x00 }; | ||||
| 
 | ||||
| static unsigned char battery_100_bits[] = { | ||||
|    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xff, 0x0f, 0xff, 0xff, 0x1f, | ||||
|    0x03, 0x00, 0x18, 0xbb, 0xbb, 0x7b, 0xbb, 0xbb, 0xfb, 0xbb, 0xbb, 0xdb, | ||||
|    0xbb, 0xbb, 0xdb, 0xbb, 0xbb, 0xdb, 0xbb, 0xbb, 0xfb, 0xbb, 0xbb, 0x7b, | ||||
|    0x03, 0x00, 0x18, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0x0f, 0x00, 0x00, 0x00 }; | ||||
| 
 | ||||
| static unsigned char battery_loading_bits[] = { | ||||
|    0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xfe, 0xe4, 0x0f, 0xff, 0xec, 0x1f, | ||||
|    0x03, 0x08, 0x18, 0x03, 0x18, 0x78, 0x03, 0x30, 0xf8, 0x83, 0x3f, 0xd8, | ||||
|    0x03, 0x7f, 0xd8, 0x03, 0x03, 0xd8, 0x03, 0x06, 0xf8, 0x03, 0x04, 0x78, | ||||
|    0x03, 0x0c, 0x18, 0xff, 0xcb, 0x1f, 0xfe, 0xd3, 0x0f, 0x00, 0x10, 0x00 }; | ||||
| 
 | ||||
| // Other symbols
 | ||||
| #define swipe_width 24 | ||||
| #define swipe_height 16 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Norbert Walter
						Norbert Walter