Ben Bartling

Results 17 issues of Ben Bartling

Hi, Could anyone give me a tip on getting setup? Do I need Linux to run this or is Windows 10 Ok? I would like to try this but very...

Update driver to use `grequests` instead of `requests` library. Currently the driver seems to only support a rest api that has a baseline URL and concatenating the "point" into the...

user request

[This commit in develop branch](https://github.com/VOLTTRON/volttron/blob/develop/scripts/bacnet/grab_bacnet_config.py) from Maurice on the VOLTTRON office hours needs to be looked at closely. I think the changes Maurice did so VOLTTRON can pick up BACnet...

Hello, I did a pip install of the lib and just trying the example code from a .py file (not command prompt like tutorial) I get an error for the...

So I think I understand when using `connect` that `point.lastValue` returns the last value of the Pandas series df. - Does point.value perform a fresh read request and point.lastValue is...

Am I adding trends in correctly for the complete version? https://bac0.readthedocs.io/en/latest/connect.html#complete The dashboard is really nice looking....but no trends to plot: ![image](https://user-images.githubusercontent.com/29737117/191052024-02f2cc2d-e560-4d4a-919e-6606e873a062.png) No errors when I run this below....am only...

Hello, I ran across your github account for the TSA challenge, and I was curious if its possible to run your finished model? I am a hobbyist just looking to...

Hello, I am encountering an issue with message signing in OpenLEADR and seek guidance on its implementation over HTTP. I followed the instructions in the [OpenLEADR documentation for message signing](https://openleadr.org/docs/message_signing.html#generating-certificates)...

Hello, From the Py03 documentation I am trying out something similar to the example in the calling Python from Rust example 3.4. [Executing existing Python code](https://pyo3.rs/v0.21.0-beta.0/python-from-rust/calling-existing-code#:~:text=Include%20multiple%20Python%20files)... I have this setup,...

If I have some functions very similar to the documentation: ``` def job(faces): print("I'm running on thread %s" % threading.current_thread()) pload = {'face_count':num_faces} r = requests.post('https://httpbin.org/post',data=pload) print(r.text) def run_threaded(job_func, faces):...