![]() |
[Tkinter] Anyone know what happened to my button? - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: GUI (https://python-forum.io/forum-10.html) +--- Thread: [Tkinter] Anyone know what happened to my button? (/thread-33808.html) |
RE: Anyone know what happened to my button? - IgnacioMora23 - Jun-04-2021 (Jun-01-2021, 01:26 AM)Larz60+ Wrote: Is this document of any value for your network? Hi Larz60, I already reviewed the document, and everything I need I already had. The instruction that subtracts the 64-bit address, the instruction that subtracts the data, and the instruction that sends the message. Thank you very much for the document. I think I did not make myself understood earlier. RE: Anyone know what happened to my button? - IgnacioMora23 - Jun-04-2021 (May-30-2021, 11:02 PM)Yoriz Wrote: I'm finding it hard to understand what you are looking for, how many sensors is it likely to go up to. Hello Yoriz, I would like to be able to show the information in this way. Reviewing the format of the main proposal and this one, as it has more clarity RE: Anyone know what happened to my button? - Yoriz - Jun-04-2021 Look into using a ttk treeview widget ![]() https://docs.python.org/3/library/tkinter.ttk.html#treeview https://tkdocs.com/tutorial/tree.html RE: Anyone know what happened to my button? - IgnacioMora23 - Jun-07-2021 (Jun-04-2021, 04:57 PM)Yoriz Wrote: Look into using a ttk treeview widget Thnks Yoriz RE: Anyone know what happened to my button? - IgnacioMora23 - Jun-13-2021 (May-29-2021, 07:36 PM)Yoriz Wrote: Try this, I can't test it so fingers crossed, I don't know if data.split(",") will be in the right order for self.form_frame.set_str_variables Hello Yoriz, I have been trying to change the order because in the date I get the voltage and in the hour I get the time and in the voltage I get the date haha I try to change here self.data.set_voltages( float(data.split(",")[0])) self.data.set_date(data.split(",")[1]) self.data.set_time(data.split(",")[2]) self.form_frame.update()But dont have results RE: Anyone know what happened to my button? - IgnacioMora23 - Aug-12-2021 (May-30-2021, 11:02 PM)Yoriz Wrote: I'm finding it hard to understand what you are looking for, how many sensors is it likely to go up to. Hi Yoriz, can you help me with this. I've been thinking that this option of a list with headers seems better to me. If I'm not mistaken, it makes it easier for you to do it this way. I would really appreciate your help, I don't know tkinter and I need this for my graduation project, I focus more on the electrical design of the sensor and this programming has really gotten out of hand. i think this was the last code i had. It was two months ago. Maybe I can refresh you a bit what I was looking for and I am looking to see in the interface. I have the programming, done in python to be able to read the messages that arrive at the Xbee (an antenna), in my case I am going to use 3 antennas, which will communicate with a main antenna in the computer, this will decode the message and show it, the part of decoding the message is done automatically by XBee and the part of subtracting the information from the message is in the code. My idea is to show something like the Header that you put in this post. That is, first that I can strip a button, which what it does is send a start message to all the Xbees, so that they can send the information every 30 seconds or so. I would really thank you too much, you would save my life and my stress of the year. |