The Bluetooth is because my project already transmits all my required data by Bluetooth.
Picking that up would be the easiest way of grabbing that data
You may as well mashed the keyboard for all that made any sense to me :o
I downloaded Python last night and started playing. It's going to be a steep curve to get to a decent GUI, but life ain't exactly throwing me much else except loading/unloading the dishwasher at the moment.
I believe (but could be wrong), that Python has its own GUI abilities using TkInter?
I found a couple of Arduino GUI examples for Python online and in here, but the fail to compile, as I think they are on older versions of Python.
I create my Python GUIs so they appear in a web browser. I find it much easier to work with HTML and CSS rather than TKinter. With the Python Bottle web framework you can have a very basic webserver running on your PC in 15 or 20 minutes.
Another benefit is that the GUI that works on my PC's browser can be accessed from my tablet or phone with no changes.
Robin2:
I create my Python GUIs so they appear in a web browser. I find it much easier to work with HTML and CSS rather than TKinter. With the Python Bottle web framework you can have a very basic webserver running on your PC in 15 or 20 minutes.
Another benefit is that the GUI that works on my PC's browser can be accessed from my tablet or phone with no changes.
...R
But then I will need to ensure I have an internet connection.... which I may not (or am I wrong there)
Send the data from the devices, publish, to a MQTT broker, ran on a local PC, then use something like Hello IoT, subscriber, to create a user interface.
phoneystark2020:
But then I will need to ensure I have an internet connection.... which I may not (or am I wrong there)
Python bottle creates a web service on the local PC which can be directly accessed by a web browser on the same PC with no internet connection at all. If there is an internet connection and the firewall(s) allow it, it can also be accessed by any other web browser. Typically this means you can view the webpage with a phone or tablet on your home network, but not from the outside internet without firewall configuration.
tKinter is a basic GUI framework that probably is preinstalled with whatever version of python you've installed. That's probably the right place to start (vs PyQt5) if you haven't done GUI development previously.
PyQt5 is a more recent, more powerful, and more portable framework but has a correspondingly steeper learning curve and likely isn't part of the distribution you've installed.
OK, there is a steep learning curve to all of this for me here.
I downloaded the latest version of Python (3.8).
The Bluetooth is already being transmitted and collected on an Android App perfectly. This windows interface was to replace that GUI and give me some more real estate to work with.
Therefore, I don't really want to take apart the perfectly working transmission side of the project if I can help it.
The main problem I am having is finding a decent guide on the basics and upwards of Python.
Amazon books get mixed/bad reviews, and it's very hit n miss on the web (so far).
Pretty sure once I get my head around it, I will pick it up quickly.
I would REALLY like to understand the whole MQTT, HTML, Web based programming.... but I have looked into that before and got horribly lost.
I installed 64 bit Python, but I have changed that to 32 bit as I have read that you really don't need 64 bit and that more libraries work better with the 32 bit.
Been trying to install pyserial for an hour now. WHY don't they make it a simple EXE file. Messing around with RAR files etc is a pain in the backside.