Thank you st3v3n92
i know the conversion factor for grams to ounces is 1 gram = 0.035274 ounces, that's where my attempt in conversion came in on my original code
lcd.print(scale.get_units*(0.035274)(4), 1);
which should be
lcd.print(scale.get_units(4), 1);
thanks for sharing the KTS file! i downloaded it to the folder.
I see you left a space for the calc which would be the what the load cell is reading * 0.035274, when i try to put that after "get_units" it tells me i cant use it as a function.
case ounces:
lcd.print(scale.get_units * 0.035274, (4), 1);
lcd.print("oz");
break;
im not sure how to grab the reading and multiply it by 0.35274?