Search found 22 matches

by AliTaih
18 Dec 2020 18:48
Forum: Lambda Shield for Arduino
Topic: Customizing display output
Replies: 38
Views: 36954

Re: SupplyVoltage instead AFR

Ok it worked fine. i am struggling adding a V for volt behind number and maybe the greek lambda sign behind ads value.

u8g2.print((SupplyVoltage),"V"); this does not work.

u8g2.print(Lookup_Lambda(adcValue_UA), 2); what does the 2 stand for ?
by AliTaih
17 Dec 2020 19:13
Forum: Lambda Shield for Arduino
Topic: Customizing display output
Replies: 38
Views: 36954

Customizing display output

I changed the Code so i can see the OnBoard Voltage instead of AFR (lambda is better). so i changed the code to look like this: //Calculate supply voltage. float SupplyVoltage = (((float)adcValue_UB / 1023 * 5) /10000) * 110000; //Output display data. u8g2.firstPage(); do { u8g2.drawXBMP(112, 4, 16,...