Weight 2K: Precision Electronic Scale

Design Specifications   |   Description of Product
 

Johnson Lai     Anthony Lazzaro     James Solberg



Design Specifications

The instrument shall conform to the following general specifications:

  1. The instrument shall be capable of measuring the weight of objects, and of counting the number of identical objects placed in a weigh pan.
  2. Logic and interfacing circuits shall be powered by +5V DC and +/-12 V DC only.
  3. Any logic required shall be implemented principally by an Intel 80C196KC-16 Evaluation Board.
  4. Additional interfacing circuits shall be implemented on a solderless breadboard.  Once the circuitry has been debugged, it may be transferred to PCB if time permits.
  5. Software shall be written in the ‘C’ language, and/or in assembly language.  Code to run under DOS shall be complied by the Microsoft QuickC compiler, whilst 80C196 code shall be generated by the IAR Systems ICC8096 compiler.


The instrument shall conform to the following functional specifications:

  1. The load element of the scales shall be a strain-gauged cantilever beam.  The cantilever beam will be provided, which will be mounted on a base, and fitted with a lightweight weigh pan.  Four strain gauges will be mounted on the beam, and will be connected in a full-bridge configuration.  Will also be provided with a constant-current bridge excitation circuit and an instrumentation amplifier for bridge output amplification.
  2. The product shall operate in two basic modes:  stand-alone autonomous operation in the LOCAL mode, or under command from a remote terminal in the REMOTE mode.
  3. When operating autonomously in LOCAL mode, the user shall enter commands using a 12 key numeric keypad. A PC-1602AR 16 character by 2 line liquid crystal display (LCD) shall allow the user to monitor command entry and execution, and shall be used to display command prompts, status and error messages, and sensory data.
  4. When operating under command from a remote terminal in REMOTE mode, commands and responses shall be communicated from a remote terminal over a serial data transmission line.  Commands shall be entered from the keyboard of the remote terminal, and the terminal screen shall replace the LCD.
  5. The serial data transmission line shall conform to the RS-232C standard.  The serial data format shall be 1 start bit, 8 data bits, 1 stop bid, no parity.  The baud rate shall be 1200 baud.
  6. Serial data transmission should be implemented using the functions provided within the ‘term’ program.
  7. When operating in REMOTE mode, the remote terminal shall provide a continuous display of the load readings.
  8. An IBM-compatible PC shall be the remote terminal.
  9. In each of the two basic modes, the product shall be able to perform the four functions: CALIBRATE, TARE, WEIGH, or COUNT.  The user shall at any time be able to select any of these modes, consistent with the product’s correct operation, and shall be provided with a visual indication of the mode selected.
  10. In CALIBRATE mode, the user shall be able to remove any weighing inaccuracies with may arise due to beam nonlinearities or other effects, so that the scale satisfies the requirements of this specification.
  11. In TARE mode, the user shall be able to zero the display, so that any subsequent change in weight is measured relative to the new zero weight.
  12. In WEIGH mode, the scales shall provide a continuous display of the weight of items resting in the weight pan.
  13. In COUNT mode, the weight of a known number of identical items should first be measured, and then used to deduce the (unknown) number of items placed on the pan.  The number of items shall not exceed 1000.
  14. The load capacity of the instrument shall be as large as possible, but shall be not be less than 1,000g.
  15. The sensitivity of the instrument shall be made as high as possible.
  16. A load between 0g and 1,000g shall be measured to accuracy of +/- 1g.
  17. The balance shall power-up and power-down in a well-defined way.
TOP OF PAGE   |   BACK to engineering credentials   |   BACK to engineering projects   |   JAMES' HOME

Description of Product

Overview:
This design project assignment for an electronic scale to be implemented using a strain gauge bridge and the 80KC196 eval board was completed as follows:

The control software was written primarily in assembly language to save memory space and take advantage of the register to register architecture of the 80KC196 microcontroller. Only those function the required floating point math were implemented in C language. . As it turned out, the complete code size was 15.5k bytes.

Serial input:
Serial data is read from SBUF on the RI interrupt and stored in the buffer PC_STR based on the ECHO flag in the SC_STAT register. If the character received is 'reset' (*), the stack is reset and the program goes back to the remote start location. The ECHO flag in SC_STAT controls whether the incoming character is saved as a string or as a single character. Setting the ECHO flag causes the ISR to repeat the character back to the terminal and to save it as the next character in the string buffer. Otherwise the character is written over the previous character stored in the first location in the string buffer. If the system is not in remote mode, all characters except the 'reset' character are ignored.

Serial output:
Serial output is achieved by using the onboard UART set to run at 1200 baud. The function is given a pointer to a string and that string is processed character by character until a NULL character is detected. Output to the LCD is done in a similar fashion allowing re-use of string constants for either output mode.

Keypad input:
Keypad input is read from IO_PORT0 on the A/D lines AD0 through AD3. No signals are sent out to the decoder circuit. The enable signal is set active to minimize the data lines needed and eliminate the need for output signals to the keypad. The data ready signal is sent to EXTINT using pin IO_PORT2.2. The EXTINT interrupt is used to detect a key press and the character is decoded using a conversion string. The character is stored in the buffer KB_STR based on the flags in the SC_STAT register. The reset ‘*’ character triggers a reset to local mode similarly to the method used by serial input. If the system is not in local mode, all keys except the '*' are ignored.

A/D conversion:
The eval board offers a 'precision voltage reference', which was used for measurements at first. It was adjusted to 5.00V initially. It was discovered that the output of the strain gauge amplifier had a maximum output of 1.68V. Investigation found a different feedback resistor (470W) had been used. The desired resistor value was calculated to be 141W so a 140W resister was used. During testing the A/D data became fixed at full scale. It was determined that the 'precision voltage reference' was latched up to +10V. it was also found that the AD7 and AD6 inputs were no longer useable. We used AD5 ultimately. It was later suggested that the voltage reference might latch up if the input voltage exceeded the reference voltage. Regardless, we abandoned the 'precision voltage reference' in favor of a stable one. A 78L05 low current voltage regulator was connected to the +12V supply to provide a 5.05V reference to the A/D converter relative to AGND. This reference worked very well most of the time. It has a 200mA capacity, which well exceeds the current requirements specified for external voltage references. On one occasion the regulator went in to thermal shutdown for no apparent reason. The system was powered down and restarted and worked fine after that. It is suspected that the A/D section of the eval board has serious problems.

Test measurements were made of the strain gauge amp's output noise and it was determined that there was 40mv p-p noise coupled from the power supply and from the eval board. Attempts to filter the noise were unsuccessful. It was then determined to do all the filtering digitally. 20mv peak voltage corresponds to about 4 counts of error.

Polling loop and Main Menu:
The menu display is maintained by a polling loop that determines the correct input to monitor and processes commands based on the scale status register SC_STAT.
The system maintains several flags in SC_STAT:

1 KB_MODE: set means the unit is in local mode. Clear means remote mode.
2 ECHO: set means show characters as typed and store as a string. Clear means only save the last character.
3 KB_BUSY: set means keypad input is in process
4 PC_BUSY: set means serial input is in process
5 Other flags were defined but not used in the code

The polling loop checks the appropriate input string for a command and processes it as necessary. If a command character is detected, that command function is called. Command functions return to the polling loop. There is a timeout counter that returns all commands to the main menu after a specified amount of time has passed without input from the user.

The main menu could be improved by the implementation of an 'active menu' that changes the display with time. We had programmed such a menu that displayed each command item sequentially and had the capacity to display more information than the final static menu but it was removed during final debugging and while it was determined to operate properly, there was not enough time to re-install it.

Tare function:
Tare is calculated based on post-calibrated data and occurs independently of the calibration coefficients. Tare is only available while in weigh mode. To use Tare, press '0' while in weigh mode.

Weigh function:
Upon entering Weigh mode, weight readings are continuously updated and displayed. Tare is done using the current reading. Any other main menu command can be accessed from the weigh mode by pressing the appropriate key. To return to the Main menu press '#' or [ENTER]. The weigh mode has the potential to show accuracy to 0.1 grams if the scale can be isolated from vibration adequately. Testing showed that it can detect the impulse of a 0.05 gram crimp terminal dropped into the pan.

Count function:
The Count function has a submenu with two choices:
1 New Quantity Factor.
2 Count Quantity.

The New Quantity Factor mode prompts for the number of items. The number is typed and then entered by pressing either '#' or [ENTER]. If zero is entered, the conversion factor is not changed and the command exits to the Main Menu. With a new quantity entered, it then calculates and stores the conversion factor based on the current scale measurement. This command proceeds directly to the Count Quantity mode.

The Count Quantity mode continuously calculates and displays count values. One can return to New Quantity Factor mode by pressing '1'. One can return to the main menu by pressing '#' or [ENTER].

The New Quantity Factor mode could be improved by displaying the current weight after the quantity is entered and then waiting until the user presses '#' or [ENTER] to signify that the reading has stabilized.

Calibrate function:
Calibrate mode calculates new calibration coefficients to fit the A/D readings to a second order polynomial. The current scale reading is continuously displayed and the user is prompted to place specific calibration weights on the scale: empty, 500g, and 1000g. The user then presses '#' or [ENTER] when the scale reading has stabilized. After all three calibration readings have been entered the new coefficients are calculated and stored. The Tare offset is set to zero. To cancel calibration mode one must press '*' before entering the third weight. Once the third weight is entered the calibration cannot be cancelled. When calibrated carefully, the scale is able to measure weight within 1g of their actual value over its entire range (1 to 1000g).

A more advanced calibration method was attempted using five points and performing a least-squares fit to a second order polynomial. The intent was to average out the errors in each reading to get a better calibration coefficient calculation, but while it worked well in simulation, the implementation had problems we were unable to debug in time so the three point fit was used instead.

Reset:
The reset character must be sent from the device that is to receive control of the scale. e.g. to go to remote mode press '*' on the terminal. The default mode is local. LCD communications are protected from interrupts using the DI/EI instructions to prevent mistiming of the LCD signals. The calibration function call is also protected by DI/EI instructions to prevent data corruption. During the demonstration it was found that random input from the keypad did not disable the scale. In some instances it was possible to interrupt the display of the main menu but it was always possible to use the Reset key to reset the system. To reset to the default state of the scale, the unit must be powered off and restarted.

Conclusion:
The 80KC196 eval board is a viable choice for embedded processor applications. Our project was relatively simple and did not use many of the features of this processor (such as software timers, high speed IO and CAM, or the peripheral transaction mode). However, we still were able to get good results. With adequate memory expansion, quite sophisticated systems could be realized. We were surprised by how sensitively and accurately we were

TOP OF PAGE   |   BACK to engineering credentials   |   BACK to engineering projects   |   JAMES' HOME

last modified 7 august 2000