DEVICE_ID List
vining
Posts: 4,368
Does anyone have an updated device id list. The one in PI was last updated "Last Modified Date:
10/25/07" and I'm looking for the ID's of the following new devices:
10/25/07" and I'm looking for the ID's of the following new devices:
NXD-500i NXD-435P NXD-435 NXD-430 NXV-300 MVP-5200i MVP-5150 MVP-5100 ENV-VST-CI'm trying to keep my function that determines feedback up to date and make sure it will still work as written with the new devices but I can't find this info anywhere.
0
Comments
NXD-500i = 331
MVP-5200i = 329
MVP-5150 = 329
MVP-5100 = 329
ENV-VST-C = $E5
Not listed yet
NXD-435P
NXD-435
NXD-430
NXV-300
I'd be interested in these as well if you find them.
One example would be sending certain page flips to certain devices. The way I have my R4s managed and the way I have my TPs managed are very different. In my R4s, I only have pages - no popups. This let's me flip quickly (and not rely on the processor) between pages within the source. In my TPs, the majority of the "pages" are actually popups.
In my page flip function, I determine whether i need to send an @PPN or a PAGE command. I consider the R4 a "TP" (of sorts), so it's in my dv_TP array. I don't have separate code for them (except when it comes to page flipping.)
If you look at the iPort UI module from AMX (kudos to Jon Parker), you will see he determines whether he can send a level to the device (if it's an R4 by default you cannot - but I do anyway.) He also checks to see if it's a G3 panel for legacy commands.
Just a few basic examples, I'm sure vining has some better ideas than me; I don't use it very often to be honest. I just compare to make sure it's NOT an R4. DEVICE_ID_STRING could be helpful too.
Colzie, again based on how it was used in the iPort module I've modified it and use it like this, I'm currently re-wroking it so pardon the mess.
The array nSB_ActiveTPArry[n] tracks the TPs so when a TP goes on page it's index position is set to the module instance it's control and when it goes off page it's set to 0. When it comes on page it's brought up to date and from then on feedback is only event driven. If it falls offline it's array value is again set to 0.
FYI, this hasn't been run since ripping it apart and putting it back together but you should be able to get the idea.
I'll do the same type of thing for levels and channels just so I can add specific requirements for that particular type of device.
Why run the function DEVICE_ID again, that's was supposed to be the point of the "if".
Has nothing for the 5200's. Where are you finding your version?
From the left hand side:
Home > Touch Panels and Accessories > Modero Touch Panels > MVP (Modero ViewPoint) Wireless Touch Panels > 5.2" Modero ViewPoint Touch Panels > MVP-5200i
Yeah, I had done that for a while (until I saw the iPort UI module), but it got hairy once you hard-coded for certain indexes, then if you had to wind up removing an index, or adding another panel . . . not fun to go through code and find where it referenced specific panels.