Closed alexkireeff closed 3 years ago
Here's a slightly clearer example:
from pylogix import PLC
with PLC() as comm:
comm.IPAddress = '10.10.100.2'
comm.Write('TEST_DINT', 0)
comm.Write('Test_float', 0)
print(comm.Read('TEST_DINT').Value)
# expected: 0
# actual: 0
r = comm.Write([('TEST_DINT.2', 1), ('Test_float', 1)])
print(comm.Read('TEST_DINT').Value)
# expected: 4
# actual: 1
You sure @alexkireeff? Have you tried with the latest code on the repo?
Yeah, I just tried to update my install with
pip install -U pylogix
and it said I was already up to date.
I also just ran the snippet on a PLC I have access to and got the following output:
@dmroeder Just a suggestion to update your README.md installation steps with an additional single line using pip + git clone:
python -m pip install git+https://github.com/dmroeder/pylogix.git
This should either install the latest or update the currently installed pylogix version.
Yeah, I ran
pip install git+https://github.com/dmroeder/pylogix.git
and that fixed the bug.
@GitHubDragonFly the readme used to say that before I put the project on pypi. I changed the repo to mention cloning the repo and installing it rather than using pip, mainly because I figured that not everyone would have git installed. Maybe I'll update the readme to be more clear, explaining that I only update pypi occasionally, so to try the bleeding edge either cloning the repo or installing with pip via git+path.
Edit: I wasn't making much sense above since in order to clone the repo, you need git installed. Though you could use the setup.py to install if someone downloaded the repo.
So @alexkireeff, you opened this as an issue previously, I pushed the fix here to github, but did not yet update pypi (pip repo).
Ahhhh, so, sometime between now and when I last opened this issue, I 'updated' my pylogix install back to 0.7.13, which caused the issue to reappear. Thanks :) and sorry about the confusion.
Preflight checks
Before you post an issue, ensure you have tried the minimal examples within the repo, or tried the pylogix-tester.
Type of issue
Description of issue
When writing to specific bits in a multiwrite, pylogix writes the first bit instead of the specified bit. Writing to a specific bit works fine when it is not a multiwrite. Similar to previous issue.
Code
Versions