2 questions on MVP-5200i:
gregr
Junior Member
1. Why would my panel communicate via USB on 10.0.0.xxx, but not on 192.168.1.xxx(my PC's subnet)?
2. Does the panel allow changing of button hit tones like the larger wireless panels? Getting to really despise the default tone.
Thanks for the answers to these not-so-thoroughly-researched questions!
2. Does the panel allow changing of button hit tones like the larger wireless panels? Getting to really despise the default tone.
Thanks for the answers to these not-so-thoroughly-researched questions!
Comments
-
To Question 1:
The USB connection is a separate network. If you connect the MVP5200 to your PC, a new network card "USB LAN Connection" is created, with a new network range 12.0.0.x (panel default is .2, PC's default .1). By this, you e.g. also can do a telnet to your panel.
To Question 2:
The current MVP-5200 firmware is not supporting different button hit and miss tones. This may be added in a future firmware release. -
Thanks for the reply, Mark.Marc Scheibein wrote: »To Question 1:
The USB connection is a separate network. If you connect the MVP5200 to your PC, a new network card "USB LAN Connection" is created, with a new network range 12.0.0.x (panel default is .2, PC's default .1). By this, you e.g. also can do a telnet to your panel.
This makes sense, but I figured I could go to Network Connection Properties and change the USB LAN Connection to my PC's sub-net and both could talk to each other fine, but that was not the case.Marc Scheibein wrote: »To Question 2:
The current MVP-5200 firmware is not supporting different button hit and miss tones. This may be added in a future firmware release.
Let's hope for the best.
Thanks -
You can program any button hit sound you like. do it from code.
Let's hope for the best.
Thanks -
2. Does the panel allow changing of button hit tones like the larger wireless panels? Getting to really despise the default tone.
Future 5200i firmware releases will include the same selectable tones and custom tone feature that the 8400 has. All I can say is coming soon. Hang in there.
Chris -
ericmedley wrote: »You can program any button hit sound you like. do it from code.
Indeed. While complain about something so easily changed? I haven't heard the default sound in years. Well that's not true, I hear it about 5 times every time I unpack a new panel. The only thing that would be nice is if the setup pages could use the sounds in the touch panel file rather than the default or nothing. But I can't see that happening anytime soon.
Paul -
a_riot42,
If you are not familiar with the 8400 feature that was being referenced, this comes with 10 sounds for button hits/misses and allows an extra slot for a custom hit/miss sound. The custom hit/miss file is added as a resource in your TPD4 project.
ChrisIndeed. While complain about something so easily changed? I haven't heard the default sound in years. Well that's not true, I hear it about 5 times every time I unpack a new panel. The only thing that would be nice is if the setup pages could use the sounds in the touch panel file rather than the default or nothing. But I can't see that happening anytime soon.
Paul -
a_riot42,
If you are not familiar with the 8400 feature that was being referenced, this comes with 10 sounds for button hits/misses and allows an extra slot for a custom hit/miss sound. The custom hit/miss file is added as a resource in your TPD4 project.
Chris
I am not familiar. Is this a new feature? I don't see it in the MVP-5200 setup. I haven't been programming many 8400's lately, just 5200's and iPads.
Paul -
Please see my previous post in this thread..
http://www.amxforums.com/showthread.php?7676-2-questions-on-MVP-5200i&p=53331#post53331
ChrisI am not familiar. Is this a new feature? I don't see it in the MVP-5200 setup. I haven't been programming many 8400's lately, just 5200's and iPads.
Paul -
Indeed. While complain about something so easily changed? I haven't heard the default sound in years. Well that's not true, I hear it about 5 times every time I unpack a new panel. The only thing that would be nice is if the setup pages could use the sounds in the touch panel file rather than the default or nothing. But I can't see that happening anytime soon.
Paul
Yes, I know about and have done this, but-
1) If I am using the same sound for all buttons, doing it in the panel requires less work.
2) Doing it in code is not the same, as far as I have found. "^BSO" assigns the sound to the on/off states, not technically a button press. So, if I set a button feedback to blink, the sound file plays on each blink, not just the press.
Maybe there are alternatives I don't know about...
Thanks, all -
To universally change the sound on a panel, you can alter the WAV file that is included in the Program Files/Common Files/AMX Share/G4SupportFiles/_system/graphics/sounds folder. If you change these, and reload all graphics and system files on the panel (NOT smart transfer!) the file will be replaced and all sounds will be the new one(s). This lets you replace any/all of the 10 pack-in sounds on the new firmware too. I found 2-10 to be worse than the standard #1. Well, #7 was not horrible.
-
Where this will do the job, indeed, there is one reason why I would never recommend it.
Next time somebody ELSE uploads the same file, sounds will revert to the default, and about half of my customers will consider that a reason to call you after hours and to say that "the other guy" has broken their panel. -
felixmoldovan wrote: »Where this will do the job, indeed, there is one reason why I would never recommend it.
Next time somebody ELSE uploads the same file, sounds will revert to the default, and about half of my customers will consider that a reason to call you after hours and to say that "the other guy" has broken their panel.button_event[dev_bunch_O_TPs,0] { push: { send_command dev_bunch_O_TPs[get_last(dev_bunch_O_TPs)], '@SOU-whateversoundyouwant.wav' } }
done...
"Programmer smacks the 'Easy' button" -
Actually unless you do a "full clean transfer" the sounds will stick and I don't know anyone who does that unless they're changing sound files to begin with.felixmoldovan wrote: »Where this will do the job, indeed, there is one reason why I would never recommend it.
Next time somebody ELSE uploads the same file, sounds will revert to the default, and about half of my customers will consider that a reason to call you after hours and to say that "the other guy" has broken their panel.
Also keep in mind that for a lot of us, if someone else is uploading files to our customer's system then they're using another company so F' em.
Even for big companies where this could be a problem, file syncing is common place so sync this file too. -
It happened, so I mentioned it. From the same company, same file, different tp4 installation.
All I am saying is that there are solutions, such as the one posted above by Eric, where circumstantial prerequisites are not involved. -
thanks!ericmedley wrote: »
button_event[dev_bunch_O_TPs,0] { push: { send_command dev_bunch_O_TPs[get_last(dev_bunch_O_TPs)], '@SOU-whateversoundyouwant.wav' } }
Have never used this-looks like a code-based equivalent to changing sounds in the panel. -
ericmedley wrote: »
button_event[dev_bunch_O_TPs,0] { push: { send_command dev_bunch_O_TPs[get_last(dev_bunch_O_TPs)], '@SOU-whateversoundyouwant.wav' } }
Have never used this-looks like a code-based equivalent to changing sounds in the panel.
Precisely! -
great tip!To universally change the sound on a panel, you can alter the WAV file that is included in the Program Files/Common Files/AMX Share/G4SupportFiles/_system/graphics/sounds folder. If you change these, and reload all graphics and system files on the panel (NOT smart transfer!) the file will be replaced and all sounds will be the new one(s). This lets you replace any/all of the 10 pack-in sounds on the new firmware too. I found 2-10 to be worse than the standard #1. Well, #7 was not horrible.
I had no idea-just tried it and works-thanks, John!
Categories
- All Categories
- 2.5K AMX General Discussion
- 922 AMX Technical Discussion
- 514 AMX Hardware
- 502 AMX Control Products
- 3 AMX Video Distribution Products
- 9 AMX Networked AV (SVSI) Products
- AMX Workspace & Collaboration Products
- 3.4K AMX Software
- 151 AMX Resource Management Suite Software
- 386 AMX Design Tools
- 2.4K NetLinx Studio
- 135 Duet/Cafe Duet
- 248 NetLinx Modules & Duet Modules
- 57 AMX RPM Forum
- 228 MODPEDIA - The Public Repository of Modules for Everyone
- 943 AMX Specialty Forums
- 2.6K AMXForums Archive
- 2.6K AMXForums Archive Threads
- 1.5K AMX Hardware
- 432 AMX Applications and Solutions
- 249 Residential Forum
- 182 Tips and Tricks
- 146 AMX Website/Forums
