Jan-16-2019, 12:20 PM
Hi, im after a bit of help, ive been playing around with a couple of bits of code and im really struggling getting the two to work together, i have made a gui using guizero and i am wanting to launch a load cell example file i have from inside the gui when i open a separate window ive tried many things and i dont know what else to try, i would really appropriate if someone could help me out and show me how to combine the two to get meaningful results.
The two work fine independently but the second bit of code which is for a load cell displays the output in the command/terminal window and i need it to show inside the gui. (This is being used on a raspberry pi) the code for the gui is this:
The two work fine independently but the second bit of code which is for a load cell displays the output in the command/terminal window and i need it to show inside the gui. (This is being used on a raspberry pi) the code for the gui is this:
from guizero import App import tkinter as tk import time import serial #Items to be defined def open_main(): main.show() def open_window(): window.show(wait=True) def open_window2(): window2.show(wait=True) def close_window(): window.hide() def close_window2(): window2.hide() app = App(bg="#09920B", title="Test") #App Start from guizero import App, Text, PushButton, ButtonGroup, Picture, Window # Import Objects from GUIZERO welcome_message = Text(app,color="white" , text="Welcome", size=40, font="Times New Roman") #Main Title Logo = Picture(app, image="logo.gif") # GIF #Pull Test Window Star window = Window(app, title="Pull Test",height=300, width=500) #Window size,name, etc window.hide() logo = Picture(window,image="logo.png",) window.hide() welcome_message = Text(window,color="black" , text="Kilograms:(units)", size=40, font="Times New Roman") window.hide() open_button = PushButton(app, text="Pull Test", command=open_window, width=150) # Pull Test Button in main screen close_button = PushButton(window, text="Close", command=close_window) #Close button in pull test window #Push Test Window Start window2 = Window(app, title="Push Test",height=300, width=500) #Push Test Window window2.hide() logo = Picture(window2,image="logo.png") welcome_message = Text(window2,color="black" , text="Kilograms:(units)", size=40, font="Times New Roman") #Units to be measured window2.hide() open_button = PushButton(app, text="Push Test", command=open_window2, width=200)#Open window for push test close_button = PushButton(window2, text="Close", command=close_window2) #Close button in Push test window welcome_message = Text(app,color="white" , text="Calibration", size=40, font="Times New Roman") #text displayed at bottom of main page Logo = Picture(app, image="rds1.png") #RDS logo on bottom of main page app.display()and the code for the load cell that i want to launch inside the window "push test" and "pull test" is here:
#!/usr/bin/env python3 import RPi.GPIO as GPIO # import GPIO from hx711 import HX711 # import the class HX711 try: GPIO.setmode(GPIO.BCM) # set GPIO pin mode to BCM numbering # Create an object hx which represents your real hx711 chip # Required input parameters are only 'dout_pin' and 'pd_sck_pin' hx = HX711(dout_pin=5, pd_sck_pin=6) # measure tare and save the value as offset for current channel # and gain selected. That means channel A and gain 128 err = hx.zero() # check if successful if err: raise ValueError('Tare is unsuccessful.') reading = hx.get_raw_data_mean() if reading: # always check if you get correct value or only False # now the value is close to 0 print('Data subtracted by offset but still not converted to units:', reading) else: print('invalid data', reading) # In order to calculate the conversion ratio to some units, in my case I want grams, # you must have known weight. input('Put known weight on the scale and then press Enter') reading = hx.get_data_mean() if reading: print('Mean value from HX711 subtracted by offset:', reading) known_weight_grams = input( 'Write how many grams it was and press Enter: ') try: value = float(known_weight_grams) print(value, 'grams') except ValueError: print('Expected integer or float and I have got:', known_weight_grams) # set scale ratio for particular channel and gain which is # used to calculate the conversion to units. Required argument is only # scale ratio. Without arguments 'channel' and 'gain_A' it sets # the ratio for current channel and gain. ratio = reading / value # calculate the ratio for channel A and gain 128 hx.set_scale_ratio(ratio) # set ratio for current channel print('Ratio is set.') else: raise ValueError('Cannot calculate mean value. Try debug mode. Variable reading:', reading) # Read data several times and return mean value # subtracted by offset and converted by scale ratio to # desired units. In my case in grams. print("Now, I will read data in infinite loop. To exit press 'CTRL + C'") input('Press Enter to begin reading') print('Current weight on the scale in grams is: ') while True: print(hx.get_weight_mean(20), 'g') except (KeyboardInterrupt, SystemExit): print('Bye :)') finally: GPIO.cleanup()i have been playing around for ages and any help would be greatly appreciated


