¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: String Handling

Chip
 

That shouldn't be the case. If you watch in debugger, EACH part of the string that matches the parameters you have entered in the SIO will pulse the corresponding output high as the match "passes through". If you have your SIO parameters entered like this:

Status.Stream1 Running
Status.Stream2 Running
Status.Stream3 Running
Status.Stream4 Running
Status.Stream5 Running
Status.Stream6 Running
Status.Stream1 Stopped
Status.Stream2 Stopped
Status.Stream3 Stopped
Status.Stream4 Stopped
Status.Stream5 Stopped
Status.Stream6 Stopped

Then take o1 and o7 (start and stop for stream 1) and run them to an interlock. Take o2 and o8 to another interlock. o3 and 09 to *another* interlock, etc.

You would then have 6 interlocks, each one representing the on/off state of each stream.

- Chip

--- In Crestron@..., "devesh.gupta83" <devesh.gupta83@...> wrote:

Hi Neil,

It comes in as one big string so if I simple feed it in SIO and try to match the characters such as

"Status.Stream1 Runnig" out 1 of sio
"Status.Stream2 Runnig" out 2 of sio

only the last data out gets high as SIO will only match the last bit of stream which is status.6 Stopped .

Hope this clarifies what I am trying to accomplish.

--- In Crestron@..., Neil Dorin <neildorin@> wrote:

Maybe I'm not understanding the question here, but a simpl SIO with
interlocks would support feedback from these strings.

On Wed, Mar 28, 2012 at 1:59 PM, devesh.gupta83 <devesh.gupta83@>wrote:

**


Hi Guys,

A quick question:

I am sending a status command to streaming device which returns the
following:

EP_RX$ Status.STREAM1 Running&#92;x0D&#92;x0AStatus.STREAM2 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.STREAM3 Stopped&#92;x0D&#92;x0AStatus.STREAM4 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.6 Stopped&#92;x0D&#92;x0A

how each date each EP_RX$ string contains is different every time. How do
I parse this to provide TP with true FB?



[Non-text portions of this message have been removed]


Re: String Handling

 

Forgot to put that you need /n as the delimiter for the serial gather or
substring

On Wed, Mar 28, 2012 at 1:24 PM, Nathan Hesson <nhesson@...> wrote:

You can run the serial string through either a Serial Gather or a Serial
Substring symbol before running it into your SIO. This should make each
evaluate separately. You'll then need to run the individual outputs through
some sort of latch (SR, TOGGLE, ILOCK) for each state for each Stream. Then
take the output of the latch and run it to your touchpanel as digital FB or
into a new SIO for serial FB.

HTH
-Nathan


On Wed, Mar 28, 2012 at 1:14 PM, devesh.gupta83 <devesh.gupta83@...>wrote:

Hi Neil,

It comes in as one big string so if I simple feed it in SIO and try to
match the characters such as

"Status.Stream1 Runnig" out 1 of sio
"Status.Stream2 Runnig" out 2 of sio

only the last data out gets high as SIO will only match the last bit of
stream which is status.6 Stopped .

Hope this clarifies what I am trying to accomplish.

--- In Crestron@..., Neil Dorin <neildorin@...> wrote:

Maybe I'm not understanding the question here, but a simpl SIO with
interlocks would support feedback from these strings.

On Wed, Mar 28, 2012 at 1:59 PM, devesh.gupta83 <devesh.gupta83@
...>wrote:

**


Hi Guys,

A quick question:

I am sending a status command to streaming device which returns the
following:

EP_RX$ Status.STREAM1 Running&#92;x0D&#92;x0AStatus.STREAM2 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.STREAM3 Stopped&#92;x0D&#92;x0AStatus.STREAM4 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.6 Stopped&#92;x0D&#92;x0A

how each date each EP_RX$ string contains is different every time.
How do
I parse this to provide TP with true FB?






------------------------------------




Check out the Files area for useful modules, documents, and drivers.

A contact list of Crestron dealers and programmers can be found in the
Database area.
Yahoo!
Groups Links




Re: String Handling

 

You can run the serial string through either a Serial Gather or a Serial
Substring symbol before running it into your SIO. This should make each
evaluate separately. You'll then need to run the individual outputs through
some sort of latch (SR, TOGGLE, ILOCK) for each state for each Stream. Then
take the output of the latch and run it to your touchpanel as digital FB or
into a new SIO for serial FB.

HTH
-Nathan

On Wed, Mar 28, 2012 at 1:14 PM, devesh.gupta83 <devesh.gupta83@...>wrote:

Hi Neil,

It comes in as one big string so if I simple feed it in SIO and try to
match the characters such as

"Status.Stream1 Runnig" out 1 of sio
"Status.Stream2 Runnig" out 2 of sio

only the last data out gets high as SIO will only match the last bit of
stream which is status.6 Stopped .

Hope this clarifies what I am trying to accomplish.

--- In Crestron@..., Neil Dorin <neildorin@...> wrote:

Maybe I'm not understanding the question here, but a simpl SIO with
interlocks would support feedback from these strings.

On Wed, Mar 28, 2012 at 1:59 PM, devesh.gupta83 <devesh.gupta83@
...>wrote:

**


Hi Guys,

A quick question:

I am sending a status command to streaming device which returns the
following:

EP_RX$ Status.STREAM1 Running&#92;x0D&#92;x0AStatus.STREAM2 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.STREAM3 Stopped&#92;x0D&#92;x0AStatus.STREAM4 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.6 Stopped&#92;x0D&#92;x0A

how each date each EP_RX$ string contains is different every time. How
do
I parse this to provide TP with true FB?






------------------------------------




Check out the Files area for useful modules, documents, and drivers.

A contact list of Crestron dealers and programmers can be found in the
Database area.
Yahoo!
Groups Links




Re: String Handling

devesh.gupta83
 

Hi Neil,

It comes in as one big string so if I simple feed it in SIO and try to match the characters such as

"Status.Stream1 Runnig" out 1 of sio
"Status.Stream2 Runnig" out 2 of sio

only the last data out gets high as SIO will only match the last bit of stream which is status.6 Stopped .

Hope this clarifies what I am trying to accomplish.

--- In Crestron@..., Neil Dorin <neildorin@...> wrote:

Maybe I'm not understanding the question here, but a simpl SIO with
interlocks would support feedback from these strings.

On Wed, Mar 28, 2012 at 1:59 PM, devesh.gupta83 <devesh.gupta83@...>wrote:

**


Hi Guys,

A quick question:

I am sending a status command to streaming device which returns the
following:

EP_RX$ Status.STREAM1 Running&#92;x0D&#92;x0AStatus.STREAM2 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.STREAM3 Stopped&#92;x0D&#92;x0AStatus.STREAM4 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.6 Stopped&#92;x0D&#92;x0A

how each date each EP_RX$ string contains is different every time. How do
I parse this to provide TP with true FB?



[Non-text portions of this message have been removed]


Beyerdynamic MCW-D 50-9 control unit module?

 

Does anyone know if there is a module for the Beyerdynamic MCW-D 50-9?


Re: String Handling

 

Maybe I'm not understanding the question here, but a simpl SIO with
interlocks would support feedback from these strings.

On Wed, Mar 28, 2012 at 1:59 PM, devesh.gupta83 <devesh.gupta83@...>wrote:

**


Hi Guys,

A quick question:

I am sending a status command to streaming device which returns the
following:

EP_RX$ Status.STREAM1 Running&#92;x0D&#92;x0AStatus.STREAM2 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.STREAM3 Stopped&#92;x0D&#92;x0AStatus.STREAM4 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.6 Stopped&#92;x0D&#92;x0A

how each date each EP_RX$ string contains is different every time. How do
I parse this to provide TP with true FB?



[Non-text portions of this message have been removed]


String Handling

devesh.gupta83
 

Hi Guys,

A quick question:

I am sending a status command to streaming device which returns the following:

EP_RX$ Status.STREAM1 Running&#92;x0D&#92;x0AStatus.STREAM2 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.STREAM3 Stopped&#92;x0D&#92;x0AStatus.STREAM4 Running&#92;x0D&#92;x0ASt
EP_RX$ atus.6 Stopped&#92;x0D&#92;x0A

how each date each EP_RX$ string contains is different every time. How do I parse this to provide TP with true FB?


Re: Anyone Got Their Hands On The UFO Yet?

 

Looks to me more like 'triple-duty' if you need to scroll on a source that has separate Channel and Page buttons. You will also need scrolling control buttons. I guess you could use soft buttons 1 and 4 for scroll up and down while 2 and 3 can give source commands. Seems kinda lame to cut your window functions in half (when in the middle of the list) in order to use the Up/Down buttons otherwise. Again, probably asking a little too much of a floating, waterproof remote... :)

--- In Crestron@..., "Chip" <cfm@...> wrote:


I can almost give them the channel vs. page bit, as most IR remotes/devices do double duty - if I'm on a guide page on my DirecTV box, they do page up/down - if I'm watching a program, they become channel up/down.

The only time that would suck are the few pieces that come out of the box with buttons for *both*...

That "MenuBack" sounds like a legit gripe!

- Chip


--- In Crestron@..., "jayrice14" <jay@> wrote:

Hi all, We are expecting our first UFO remote within a week (?) or so. (You all know how that goes sometimes!). After looking at the programming, which is like the MLX-3, it seems like they are contradicting when talking about the 'MenuBack' button in one place and in programming it is called 'More'. I would think of it as a 'More' button since its icon is a page with a plus sign on it. It seems that it needs to represent more of a 'Go Back' (MenuBack) function. Also, in one place it labels the buttons as 'Page Up/Down' for scrolling MLX-3 style, but then in programming it says 'Channel Up/Down'. So...which is it? Channel Up/Down would be nice, but we still need scrolling buttons, right? All in true Crestron fashion, I suppose. I am nit-picking a little and might be asking too much of the remote, I admit. I can make it work, but am not sure that it will be clear enough for our clients. Any thoughts or experiences?

TIA

Jay


Re: Locking button active state on iPad

jgreenink16
 

Don't forget to manage your connections. I like to send my analog value through an analog buffer, so if you reselect the kitchen it doesn't repulse the value. I also wrote a couple connection managers. One I use for equipment that, on an analog change, disconnects all, gets the current analog, then pulses connect. That way you don't have two things connected at once. I have another one that's a little more complicated for rooms to do volume and whatnot. Sometimes you may want to control two rooms at once on a global page so you can select a source in multiple rooms with one press. That module needs to allow for multiple connections, with an option to disconnect all and reselect the default room (like when you leave the global page). I'm sure everyone has a different way of doing it, but that works for me. So in essence, if you select the kitchen, one crosspoint connects to the touchpanel, select cable, another crosspoint connects to the touchpanel.

You'll start to see how you want to manage them after you start playing with them.

--- In Crestron@..., "devesh.gupta83" <devesh.gupta83@...> wrote:

I wish they had spent more time in explaining how crosspoint works rather than telling us just to follow suit (crestron staff: if you don't do exactly as I am doing then it won't work for you and we don't have time to troubleshoot where you went wrong). Since I work in commercial environment, I don't get an opportunity to use crosspoints at all. I wish I was working in res, it would have forced me to learn this long time ago.

-D


Re: Pandora on ATC-Card

 

It's not the cost of the account in question. It's the stations that have already been setup and all of the devices that he has linked to that account. Cars, PC's, Phones, iPads, and now AUDIONET.

I offered the 'second account' option as well as the 'change the username on the existing account' option. Either way will take up time and effort. I think there should be no limit to the username or a larger limit.

my $.02
JC

--- In Crestron@..., "Kol Johnson" <kol.mstc@...> wrote:

Wouldn't a second account be missing all the stations that are already set
up in the first account? Can you link them somehow?
_____

From: Crestron@... [mailto:Crestron@...] On Behalf
Of cramamorphic
Sent: Wednesday, March 28, 2012 7:18 AM
To: Crestron@...
Subject: [Crestron] Re: Pandora on ATC-Card





It's only $36 a year. He paid 3 times that just for you to figure out what
was wrong. Why not just buy a 2nd account?

-J

--- In Crestron@... <mailto:Crestron%40yahoogroups.com> ,
"ynosevol28" <ynosevol28@> wrote:

Well, first update and fail. Need to have a accound name with less than 21
characters. Sucks for this client since his is using a Pandora One account
with multiple devices streaming. He doesn't want to go thru changing all of
them just for this Crestron device to work.

fail
JC






[Non-text portions of this message have been removed]


Re: Anyone Got Their Hands On The UFO Yet?

Chip
 

I can almost give them the channel vs. page bit, as most IR remotes/devices do double duty - if I'm on a guide page on my DirecTV box, they do page up/down - if I'm watching a program, they become channel up/down.

The only time that would suck are the few pieces that come out of the box with buttons for *both*...

That "MenuBack" sounds like a legit gripe!

- Chip

--- In Crestron@..., "jayrice14" <jay@...> wrote:

Hi all, We are expecting our first UFO remote within a week (?) or so. (You all know how that goes sometimes!). After looking at the programming, which is like the MLX-3, it seems like they are contradicting when talking about the 'MenuBack' button in one place and in programming it is called 'More'. I would think of it as a 'More' button since its icon is a page with a plus sign on it. It seems that it needs to represent more of a 'Go Back' (MenuBack) function. Also, in one place it labels the buttons as 'Page Up/Down' for scrolling MLX-3 style, but then in programming it says 'Channel Up/Down'. So...which is it? Channel Up/Down would be nice, but we still need scrolling buttons, right? All in true Crestron fashion, I suppose. I am nit-picking a little and might be asking too much of the remote, I admit. I can make it work, but am not sure that it will be clear enough for our clients. Any thoughts or experiences?

TIA

Jay


Re: Locking button active state on iPad

devesh.gupta83
 

I wish they had spent more time in explaining how crosspoint works rather than telling us just to follow suit (crestron staff: if you don't do exactly as I am doing then it won't work for you and we don't have time to troubleshoot where you went wrong). Since I work in commercial environment, I don't get an opportunity to use crosspoints at all. I wish I was working in res, it would have forced me to learn this long time ago.

-D


Programming on an 05 Country Coach RV

innoventgroup
 

Has anyone out there seen or worked with any programming for an 05 Country Coach RV? To be more exact, has anyone worked with a company called Frogen Enterprizes? I have a project right now trying to update the above referenced RV and, unfortunaly, the origional automation company is no longer alive. I would appreciate any informaion that you might have.

Thanks in advance,
DAVE


Re: Anyone Got Their Hands On The UFO Yet?

 

Yeah, those awards are a joke.

--- In Crestron@..., Phil Bridges <gravityhammer@...> wrote:

Wow - this is just coming out? Wasn't it product of the year for one of
the trade shows a few years ago?



On Wed, Mar 28, 2012 at 9:10 AM, jayrice14 <jay@...>wrote:

**


Hi all, We are expecting our first UFO remote within a week (?) or so.
(You all know how that goes sometimes!). After looking at the programming,
which is like the MLX-3, it seems like they are contradicting when talking
about the 'MenuBack' button in one place and in programming it is called
'More'. I would think of it as a 'More' button since its icon is a page
with a plus sign on it. It seems that it needs to represent more of a 'Go
Back' (MenuBack) function. Also, in one place it labels the buttons as
'Page Up/Down' for scrolling MLX-3 style, but then in programming it says
'Channel Up/Down'. So...which is it? Channel Up/Down would be nice, but we
still need scrolling buttons, right? All in true Crestron fashion, I
suppose. I am nit-picking a little and might be asking too much of the
remote, I admit. I can make it work, but am not sure that it will be clear
enough for our clients. Any thoughts or experiences?

TIA

Jay



[Non-text portions of this message have been removed]


Re: New Yahoo News RSS Parser

 

Thank you for your cooperation!

Signed,
Rafael Costa
Brazil

Em 28/03/2012 09:31, Phillip escreveu:


Hi Guys

I just posted a file to the forum entitled 'Yahoo News'..this module
works like a glove! ... Just pulse the 'Check' signal and watch all
the news data come flooding out in a readable format.

Its based on the 'Yahoo Weather Socket' module written by 'jptnindia'
and I also gathered alot of inspiration from Chip Moodys Yahoo News
feed Example. I'm glad to give something back to the forum...


*TODAY*/(Beta) /*.*Powered by Yahoo!

Jennifer Lawrence's edgy magazine cover
<;_ylc=X3oDMTFlNjVpb203BF9TAzk1NDAxMDAyNwRwa2cDaWQtMjEwMjM4MQRzeWlkA2gwNTA0YjYuMmVpajA->
The star sizzles in a sequined corset and jokes about what she'd like
to do with her money.

Privacy Policy
<>


DirecTV Newest Update (Black Interface) IP Control?

 

I haven't delved into IP control of the HR boxes from DirecTV yet, I have always just gone with the tried and true IR.

It seems we are moving faster and faster towards IP control of all devices and I have been looking at some of the modules you guys have posted (Chip, you da man) and was wondering something.

What module on here (or elsewhere) is the go to for you guys for IP control of the new DirecTV interface? Did the newest update a month or so ago jack this module up?

Appreciate any pointers fellas.


Comcast (Motorola) cable box & HD-DA-2?

mrmondegreen
 

Does the HD-DA-2 'manage' the HDCP keys in the same way DM does, particularly as it concerns connecting two TVs to one Motorola cable box? Anyone tried this successfully/unsuccessfully?

Thanks,
Chris W.


Re: Pandora on ATC-Card

 

Wouldn't a second account be missing all the stations that are already set
up in the first account? Can you link them somehow?
_____

From: Crestron@... [mailto:Crestron@...] On Behalf
Of cramamorphic
Sent: Wednesday, March 28, 2012 7:18 AM
To: Crestron@...
Subject: [Crestron] Re: Pandora on ATC-Card





It's only $36 a year. He paid 3 times that just for you to figure out what
was wrong. Why not just buy a 2nd account?

-J

--- In Crestron@... <mailto:Crestron%40yahoogroups.com> ,
"ynosevol28" <ynosevol28@...> wrote:

Well, first update and fail. Need to have a accound name with less than 21
characters. Sucks for this client since his is using a Pandora One account
with multiple devices streaming. He doesn't want to go thru changing all of
them just for this Crestron device to work.

fail
JC


Re: Anyone Got Their Hands On The UFO Yet?

 

Done two of them in the past week... refreshingly painless, even with a V24.

--
Lincoln King-Cliby, CTS
Sr. Systems Architect | Crestron Certified Programmer (Silver)
ControlWorks Consulting, LLC
V: 440.449.1100 x1107 | F: 440.449.1106 | I:
Crestron Authorized Independent Programmer

-----Original Message-----
From: Crestron@... [mailto:Crestron@...] On Behalf Of wretaudio
Sent: Wednesday, March 28, 2012 11:12 AM
To: Crestron@...
Subject: [Crestron] Re: Anyone Got Their Hands On The UFO Yet?

I just spec'ed 6 DGE-2's for a job. Are they shipping?

--- In Crestron@..., Heath Volmer <hvolmer@...> wrote:

Just like the DGE2.

Heath Volmer
Digital Domain Systems
303-517-9714

Sent from my iTypo 4

On Mar 28, 2012, at 7:31 AM, Phil Bridges <gravityhammer@...> wrote:

Wow - this is just coming out? Wasn't it product of the year for one of
the trade shows a few years ago?

On Wed, Mar 28, 2012 at 9:10 AM, jayrice14 <jay@...>wrote:

**


Hi all, We are expecting our first UFO remote within a week (?) or so.
(You all know how that goes sometimes!). After looking at the programming,
which is like the MLX-3, it seems like they are contradicting when talking
about the 'MenuBack' button in one place and in programming it is called
'More'. I would think of it as a 'More' button since its icon is a page
with a plus sign on it. It seems that it needs to represent more of a 'Go
Back' (MenuBack) function. Also, in one place it labels the buttons as
'Page Up/Down' for scrolling MLX-3 style, but then in programming it says
'Channel Up/Down'. So...which is it? Channel Up/Down would be nice, but we
still need scrolling buttons, right? All in true Crestron fashion, I
suppose. I am nit-picking a little and might be asking too much of the
remote, I admit. I can make it work, but am not sure that it will be clear
enough for our clients. Any thoughts or experiences?

TIA

Jay


[Non-text portions of this message have been removed]


[Non-text portions of this message have been removed]



------------------------------------



Check out the Files area for useful modules, documents, and drivers.

A contact list of Crestron dealers and programmers can be found in the Database area.
Yahoo! Groups Links


Re: Anyone Got Their Hands On The UFO Yet?

 

I just spec'ed 6 DGE-2's for a job. Are they shipping?

--- In Crestron@..., Heath Volmer <hvolmer@...> wrote:

Just like the DGE2.

Heath Volmer
Digital Domain Systems
303-517-9714

Sent from my iTypo 4

On Mar 28, 2012, at 7:31 AM, Phil Bridges <gravityhammer@...> wrote:

Wow - this is just coming out? Wasn't it product of the year for one of
the trade shows a few years ago?

On Wed, Mar 28, 2012 at 9:10 AM, jayrice14 <jay@...>wrote:

**


Hi all, We are expecting our first UFO remote within a week (?) or so.
(You all know how that goes sometimes!). After looking at the programming,
which is like the MLX-3, it seems like they are contradicting when talking
about the 'MenuBack' button in one place and in programming it is called
'More'. I would think of it as a 'More' button since its icon is a page
with a plus sign on it. It seems that it needs to represent more of a 'Go
Back' (MenuBack) function. Also, in one place it labels the buttons as
'Page Up/Down' for scrolling MLX-3 style, but then in programming it says
'Channel Up/Down'. So...which is it? Channel Up/Down would be nice, but we
still need scrolling buttons, right? All in true Crestron fashion, I
suppose. I am nit-picking a little and might be asking too much of the
remote, I admit. I can make it work, but am not sure that it will be clear
enough for our clients. Any thoughts or experiences?

TIA

Jay