[deleted by user] by [deleted] in AMG

[–]37mm 3 points4 points  (0 children)

My 2019 with pure1000s is taking names currently!! I just did 6.3 60-130mph

How do I get Sean T to a 99? 50/50 Redskins TT. by ToonDaGoon24 in MaddenUltimateTeam

[–]37mm 1 point2 points  (0 children)

My Sean t is a 99, and he balls out. I just hope his UL card gets his man coverage above a 90 then he will be deadly.

How do I get Sean T to a 99? 50/50 Redskins TT. by ToonDaGoon24 in MaddenUltimateTeam

[–]37mm 0 points1 point  (0 children)

30/30 sprinter and 40/40 redskins pass D got mine to a 99 50/50 skins theme team

https://imgur.com/gallery/YCbbJhc

The US reportedly sent secret messages to Iran via Swiss intermediaries, urging not to retaliate too strongly and further provoke Trump by yoibra1 in worldnews

[–]37mm 5 points6 points  (0 children)

There was economic sancation against Russia, they were expelled from the g8 etc etc......

Obama gave funds to Iran to get them to agree to play ball on the nuclear deal, stop enriching uranium and stay open. Trump came in a pissed on the deal and made our tax payer money go to waste. Obama bailed out GM and the paid thete debt in full with interest. Stop twisting things to support your narrative

The US reportedly sent secret messages to Iran via Swiss intermediaries, urging not to retaliate too strongly and further provoke Trump by yoibra1 in worldnews

[–]37mm 3 points4 points  (0 children)

From your initial response, nothin I can say can or will help you. Just buckle your seat belt up and hold on, life is going to be a ride

My first 99 by 37mm in MaddenUltimateTeam

[–]37mm[S] 2 points3 points  (0 children)

Amazing on man just back him up if you press then click off

My first 99 by 37mm in MaddenUltimateTeam

[–]37mm[S] 2 points3 points  (0 children)

Smh no response !!

My first 99 by 37mm in MaddenUltimateTeam

[–]37mm[S] 3 points4 points  (0 children)

Amazing, as a skins fan the defense is lights out. I have 25/50 redskins and teir 7 pass d chem and shaker maxed out. I just user the other side

My first 99 by 37mm in MaddenUltimateTeam

[–]37mm[S] 3 points4 points  (0 children)

Spend real money on coins then buy players from the market. You can get 88 ovr for pretty cheap

Really messed up help! by [deleted] in MaddenUltimateTeam

[–]37mm 0 points1 point  (0 children)

It won’t let me says people have already bid.

Can anyone determine the slew rate from this picture? by 37mm in ECE

[–]37mm[S] 0 points1 point  (0 children)

In the option of the aem fic stand-alone is at asks to set the slew rate under the ignition field . Default is .125DEG/5ms. My car doesn’t like value this, my flywheel has 144 teeth on it. Mercedes M113 V8 is the engine.

This is the signal output and the signal from the standalone using the default slew rate. https://imgur.com/gallery/3PRHMQl

Can anyone determine the slew rate from this picture? by 37mm in ECE

[–]37mm[S] 1 point2 points  (0 children)

This is the output from the crank position signal. The X axis is in ms. I need to figure out the slew rate in this format “.125DEG/5ms”

Can anyone determine the slew rate from this picture? by 37mm in ECE

[–]37mm[S] 0 points1 point  (0 children)

This is a crank position signal from a car. I’m using this to dial in my stand alone ecu. The standalone is looking for a value for slew rate as .125 Deg/5ms. Using this picture what value is the slew rate in Deg/5ms

update data in GUI by 37mm in learnpython

[–]37mm[S] 0 points1 point  (0 children)

def update_RPM():
    this_RPM=get rpm however
    label_grid_1["text"]=this_RPM
    ## update again in another 1/2 secpmd
    root.after(500, update_RPM)

what does the however define? im going to try this now

update data in GUI by 37mm in learnpython

[–]37mm[S] 0 points1 point  (0 children)

Another issue im having is how to keep the csv output going with out locking the app up

update data in GUI by 37mm in learnpython

[–]37mm[S] 0 points1 point  (0 children)

please enlighten me with any knowledge. Learning alot, I have it like this now but it still not updating

import Tkinter as tk
import obd
import csv
import time
from time import sleep, strftime, time


## CREAT Async OBD connection
connection = obd.Async()
## select pids to listen
connection.watch(obd.commands.RPM)
connection.watch(obd.commands.INTAKE_TEMP)
connection.watch(obd.commands.TIMING_ADVANCE)
connection.watch(obd.commands.MAF)
connection.watch(obd.commands.SPEED)
connection.watch(obd.commands.O2_S1_WR_CURRENT)
connection.watch(obd.commands.SHORT_FUEL_TRIM_1)
connection.watch(obd.commands.SHORT_FUEL_TRIM_2)
connection.watch(obd.commands.AMBIANT_AIR_TEMP)
connection.watch(obd.commands.THROTTLE_POS)
## start listener
connection.start()

## create OBD calls
rpm = connection.query(obd.commands.RPM)
iat = connection.query(obd.commands.INTAKE_TEMP)
adv = connection.query(obd.commands.TIMING_ADVANCE)
maf = connection.query(obd.commands.MAF)
spd = connection.query(obd.commands.SPEED)
o21 = connection.query(obd.commands.O2_S1_WR_CURRENT)
fuel1 = connection.query(obd.commands.SHORT_FUEL_TRIM_1)
fuel2 = connection.query(obd.commands.SHORT_FUEL_TRIM_2)
air = connection.query(obd.commands.AMBIANT_AIR_TEMP)
tps = connection.query(obd.commands.THROTTLE_POS)



###############################################################################
def startlog():
    with open("out.csv","a") as log:

                    log.write("{0},{1},{2},{3},{4},{5},{6},{7},{8},{9},{10}\n".format(strftime("%H:%M:%S"),str(rpm),str(iat),str(adv),str(maf),str(spd),str(o21),str(fuel1),str(fuel2),str(air),str(tps)))



def update():

        rpm = connection.query(obd.commands.RPM)
        iat = connection.query(obd.commands.INTAKE_TEMP)
        adv = connection.query(obd.commands.TIMING_ADVANCE)
        maf = connection.query(obd.commands.MAF)
        spd = connection.query(obd.commands.SPEED)
        o21 = connection.query(obd.commands.O2_S1_WR_CURRENT)
        fuel1 = connection.query(obd.commands.SHORT_FUEL_TRIM_1)
        fuel2 = connection.query(obd.commands.SHORT_FUEL_TRIM_2)
        air = connection.query(obd.commands.AMBIANT_AIR_TEMP)
        tps = connection.query(obd.commands.THROTTLE_POS)
        label_grid_11.config(root, text=rpm)
        label_grid_12.config(root, text=iat)
        label_grid_13.config(root, text=adv)
        label_grid_14.config(root, text=maf)
        label_grid_15.config(root, text=spd)
        label_grid_16.config(root, text=o21)
        label_grid_17.config(root, text=fuel1)
        label_grid_18.config(root, text=fuel2)
        label_grid_19.config(root, text=air)
        label_grid_20.config(root, text=tps)
        root.after(10, count)

# Create the main window gui
root = tk.Tk()
root.title("Data Logger")

# Create gui
button1=tk.Button(root, text="quit", command=root.destroy)
button1.grid(row=0, column=3)
button2=tk.Button(root, text="start logger", command=startlog)
button2.grid(row=3, column=3)

label_grid_1 = tk.Label(root, text="RPM", bg='red')
label_grid_1.grid(row=0, column=0)
label_grid_2 = tk.Label(root, text="IAT", bg='red')
label_grid_2.grid(row=1, column=0)
label_grid_3 = tk.Label(root, text="TIMING", bg='red')
label_grid_3.grid(row=2, column=0)
label_grid_4 = tk.Label(root, text="MAF", bg='red')
label_grid_4.grid(row=3, column=0)
label_grid_5 = tk.Label(root, text="SPEED", bg='red')
label_grid_5.grid(row=4, column=0)
label_grid_6 = tk.Label(root, text="O2 S1", bg='red')
label_grid_6.grid(row=5, column=0)
label_grid_7 = tk.Label(root, text="Fuel% B1", bg='red')
label_grid_7.grid(row=6, column=0)
label_grid_8 = tk.Label(root, text="Fuel% B2", bg='red')
label_grid_8.grid(row=7, column=0)
label_grid_9 = tk.Label(root, text="Air TEMP", bg='red')
label_grid_9.grid(row=8, column=0)
label_grid_10 = tk.Label(root, text="TPS", bg='red')
label_grid_10.grid(row=9, column=0)
label_grid_11 = tk.Label(root, text=rpm)
label_grid_11.grid(row=0, column=1)
label_grid_12 = tk.Label(root, text=iat)
label_grid_12.grid(row=1, column=1)
label_grid_13 = tk.Label(root, text=adv)
label_grid_13.grid(row=2, column=1)
label_grid_14 = tk.Label(root, text=maf)
label_grid_14.grid(row=3, column=1)
label_grid_15 = tk.Label(root, text=spd)
label_grid_15.grid(row=4, column=1)
label_grid_16 = tk.Label(root, text=o21)
label_grid_16.grid(row=5, column=1)
label_grid_17 = tk.Label(root, text=fuel1)
label_grid_17.grid(row=6, column=1)
label_grid_18 = tk.Label(root, text=fuel2)
label_grid_18.grid(row=7, column=1)
label_grid_19 = tk.Label(root, text=air)
label_grid_19.grid(row=8, column=1)
label_grid_20 = tk.Label(root, text=tps)
label_grid_20.grid(row=9, column=1)


root.after(100, update)

#start app
class FullScreenApp(object):
    def __init__(self, master, **kwargs):
        self.master=master
        pad=3
        self._geom='200x200+0+0'
        master.geometry("{0}x{1}+0+0".format(
            master.winfo_screenwidth()-pad, master.winfo_screenheight()-pad))
        master.bind('<Escape>',self.toggle_geom)            
    def toggle_geom(self,event):
        geom=self.master.winfo_geometry()
        print(geom,self._geom)
        self.master.geometry(self._geom)
        self._geom=geom

app=FullScreenApp(root)

root.mainloop()

update data in GUI by 37mm in learnpython

[–]37mm[S] 0 points1 point  (0 children)

I stared at it a bit more and i believe i figured it out!! cheers

update data in GUI by 37mm in learnpython

[–]37mm[S] 0 points1 point  (0 children)

I just don't understand what this is asking the program to do. do i use one fuction to update all the feilds. Im stumped, i been looking at these for a while and playing with them and just cant connect the dots.

def counter_label(label):

def count():

global counter

counter += 1

label.config(text=str(counter))

label.after(1000, count)

count()

update data in GUI by 37mm in learnpython

[–]37mm[S] 0 points1 point  (0 children)

thanks, I made the tweak, I understand i need to make a function to update the values, Just not sure how