Are you using it in symbolic or absolute addressing mode? and are you sure you have the Siemens Enhanced driver configured and not one of the old ones?
Yes, the device is set to use the enhanced driver. And it's a S7-300, so I'm doing absolute addressing.
DB1.DBX8[8] just gives me that Bad_NodeIdUnknown error on the tag.
Unfortunately, this is an error in documentation. The Siemens Enhanced Driver does not support bit arrays when using absolute addressing. I'll reach out to the docs team to get this corrected.
For use case - just less tags for each machine, and I so could index them later
Plus I wasn't sure if it was faster to grab it all at once vs individually
Not sure how the driver is setup to batch requests
But it was more of just messing around with the driver the first time and seeing behavior that didn't match what the documentation was saying. Separating them per bit shouldn't be an issue.
The driver will batch contiguous bit reads and make a request for however many bytes are necessary. It doesn't do this when writing, so as not to overwrite other bits in the byte.
Alternatively, you can read a byte and mask off the bits yourself via scripting or something, but you're probably better just using one bit per tag. You'd really only want to use an array if the actual PLC data was an array.