-
|
Hello. Outstanding project! I have been messing around with the virtual terminal trying to come up with a custom configuration and have run into some issues with some of the send changes. I didn't change anything out of the setup from the VT example except for my custom object pool. I have added an ellipse that will symbolize an LED and have been trying to change the color of it with: VTClient->send_change_fill_attributes(LED_FILL_ID, (VirtualTerminalClient::FillType)1, 10, NULL); // Where 10 should be green in the design palette
I have tried many different ways to alter the fill attribute of the ellipse but have had no luck in addition to trying send_hide_show_object, and send_change_attribute. However, the object has been altered with things such as the send_change_size_command. Am I missing something for editing the attribute of the ellipse? Thanks in advance for any help and again great work! HW: Teensy 4.1, JD G5 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Well @benmeind , here is one thing... with that exact call, the |
Beta Was this translation helpful? Give feedback.
Well @benmeind , here is one thing... with that exact call, the
NULLis 0, so you are trying to assign object 0 as a fill pattern, which probably doesn't work. Can you replace that argument with the null object ID?NULL_OBJECT_IDor65535