Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Crestron
- Messages
Search
Re: CP3 - IR ports stop working
I had to go into network device view to load the ir firmware on an MC3 once.
toggle quoted message
Show quoted text
~-----Original Message-----
~From: Crestron@... ~[mailto:Crestron@...] On Behalf Of Neil Dorin ~Sent: Tuesday, May 21, 2013 3:00 PM ~To: crestron ~Subject: Re: [Crestron] CP3 - IR ports stop working ~ ~I had a CP3 that failed a firmware update and the IR board had an ~incompatible firmware version and thus would not output IR. ~Had to call ~Crestron and after attempting to flash the firmware for 45 minutes they ~RMAd it. ~ |
Re: EISC (Packed)?
Heath Volmer
Not sure where the "2" came from that folks refer to. It's listed as "Ethernet Intersystem Communications (packed)" right under "Ethernet Intersystem Communications" in the various places that ethernet devices are added in Configure View.
On May 21, 2013, at 4:26 PM, Peter Jablonicky <jablonko@...> wrote: I can't see EISC2 in my SIMPL: [Non-text portions of this message have been removed] |
Re: EISC (Packed)?
Peter Jablonicky
I can't see EISC2 in my SIMPL:
Device Database: 48.05.005.00 Crestron Database: 38.00.006.00 Dn(a 22.5.2013 0:17 specialtyprogramming wrote / napísal(a):
[Non-text portions of this message have been removed] |
Re: EISC (Packed)?
When was the EISC2 released into the wild?
toggle quoted message
Show quoted text
This relates back to the question asked a few days ago about redundant signals on EISC's. I'm not sure about during run time, however one of the key operational differences with the EISC2 is that it sends multiple statuses on startup. I'm not sure if it sends a zero status then any non-zero values or sends every value using less traffic by putting multiple values per packet. It makes a big difference when there are a lot of EISC's that need to come into sync between multiple processors. Regards Simon Pollak Specialty Programming Services --- In Crestron@..., Neil Dorin <neildorin@...> wrote:
|
Re: Include4.dat not found
Trey Chamrad
Been like that since last summer for me; Happens at random nothing I can
toggle quoted message
Show quoted text
pin point. Trey please excuse typos, courtesy of my Samsung Note II On May 21, 2013 4:56 PM, "Heath Volmer" <hvolmer@...> wrote:
** |
Re: CP3 - IR ports stop working
I had a CP3 that failed a firmware update and the IR board had an
incompatible firmware version and thus would not output IR. Had to call Crestron and after attempting to flash the firmware for 45 minutes they RMAd it. On Tue, May 21, 2013 at 3:30 PM, Russell Grove <russellrgrove@...>wrote: ** [Non-text portions of this message have been removed] |
Re: Help with Display Development Protocol
Modulo 256 should be the remainder after dividing by 256 (in other words,
the lower byte of the sum), you can check this by trying the operation on a number larger than 256. _____ From: Crestron@... [mailto:Crestron@...] On Behalf Of Heather Baiman Sent: Tuesday, May 21, 2013 2:28 PM To: Crestron@... Subject: [Crestron] Help with Display Development Protocol We're installing one of these F3 projectors and I wasn't able to test it in the office before it went to site. The DD people actually do the install themselves and I was also under the impression that I only needed to control the VP-100 (rebadged DVDO iScan Duo) scalar that comes with it. Surprise, need to control the F3 also with a slightly confusing protocol document. Strings are formatted as: Start Byte \xFE Proj Addresss \x01 Command Byte(s) Data Byte(s) Checksum byte (address + command + data) modulo 256 Stop Byte \xFF Example: Lamp Command \x76\x1A Lamp Data (On) \x01 Lamp Data (Off) \x00 So to turn the lamp on I believe I should get: \xFE\x01\x76\x1A\x01\x92\xFF Question: What does the modulo notation mean? Twos complement, correct? I tried selecting MOD on the calculator but it did nothing to change the check sum value. I think I have only had to use 2's complement once or twice in my programming life and I'm drawing a blank here. TIA Heather Baiman, Head of Programming Electronic Environments Inc. 247 W. 37th Street, Suite 704, New York, NY 10018 Phone: 212-997-1110 | Fax: 212-997-0474 |
Re: Help with Display Development Protocol
Kool-Aid Drinker
Not all computer folks! In classic Scheme programming, you get to
write out the whole word. On Tue, 21 May 2013 15:46:09 -0600, Heath Volmer <hvolmer@...> wrote: Yes. "Modulo" is just the mathematical word that apparently only engineers use. Math and |
Re: EISC (Packed)?
I'm not privy to the complete inner workings but my understanding is that
toggle quoted message
Show quoted text
the packed EISC will trap multiple changes and transmit them all as one packet over TCP rather than generating a packet for each signal change. This is imperceptible as far as programs are concerned but generates magnitudes less TCP traffic. On Tue, May 21, 2013 at 1:42 PM, matt_rasmussen_2000 <mjrtoo@...>wrote:
** |
Re: Help with Display Development Protocol
Heath Volmer
Yes. "Modulo" is just the mathematical word that apparently only engineers use. Math and computer folks are too lazy.
toggle quoted message
Show quoted text
checkum = sum % 256 in programming-speak. On May 21, 2013, at 3:42 PM, Chris Schley <cssfh3@...> wrote:
I believe the value is right. I'm pretty sure that modulo is the |
Re: EISC (Packed)?
Eric Williams
I just noticed these today, thanks for the clarification. I have some updating to do.
toggle quoted message
Show quoted text
Sent from my pocket robot! -----Original Message-----
From: "matt_rasmussen_2000" <mjrtoo@...> Sent: �5/�21/�2013 3:42 PM To: "Crestron@..." <Crestron@...> Subject: [Crestron] Re: EISC (Packed)? You seem to have inside information Neil, are you saying that the EISC will generate a single packet when multiple transitions occur on a single logic wave, rather than a packet for every change? --- In Crestron@..., Neil Dorin <neildorin@...> wrote:
|
Re: Help with Display Development Protocol
Chris Schley
I believe the value is right. I'm pretty sure that modulo is the
toggle quoted message
Show quoted text
remainder after division. In this case, it limits the checksum to 1 byte, in case the sum is greater than 255. Chris. On 5/21/2013 4:28 PM, Heather Baiman wrote:
|
Re: Help with Display Development Protocol
Kool-Aid Drinker
The modulo-256 just means the low-byte of the sum only. Command looks
good. On Tue, 21 May 2013 21:28:10 +0000, Heather Baiman <heather@...> wrote: We're installing one of these F3 projectors and I wasn't able to test it in the office |
Re: CP3 - IR ports stop working
I had this problem with an Adagio a few years ago. I had a bad IR file that worked fine in a PRO2 but when specific buttons were pressed it would lock up the Adagio until power cycled.
toggle quoted message
Show quoted text
-Russell On May 21, 2013, at 4:03 PM, "Jon W" <jonwaldrip@...> wrote:
I have a CP3 that has had a problem twice now, where all 8 IR ports simply stop outputting anything. Everything seems fine (ethernet, serial, relays, etc�) when it happens. |
Help with Display Development Protocol
Heather Baiman
We're installing one of these F3 projectors and I wasn't able to test it in the office before it went to site. The DD people actually do the install themselves and I was also under the impression that I only needed to control the VP-100 (rebadged DVDO iScan Duo) scalar that comes with it. Surprise, need to control the F3 also with a slightly confusing protocol document.
Strings are formatted as: Start Byte \xFE Proj Addresss \x01 Command Byte(s) Data Byte(s) Checksum byte (address + command + data) modulo 256 Stop Byte \xFF Example: Lamp Command \x76\x1A Lamp Data (On) \x01 Lamp Data (Off) \x00 So to turn the lamp on I believe I should get: \xFE\x01\x76\x1A\x01\x92\xFF Question: What does the modulo notation mean? Twos complement, correct? I tried selecting MOD on the calculator but it did nothing to change the check sum value. I think I have only had to use 2's complement once or twice in my programming life and I'm drawing a blank here. TIA Heather Baiman, Head of Programming Electronic Environments Inc. 247 W. 37th Street, Suite 704, New York, NY 10018 Phone: 212-997-1110 | Fax: 212-997-0474 |
Re: TSTAT-EX Issue (feedback?)
Heath Volmer
FB reports what the TSTAT is doing, regardless of what the program told it to do. A user can adjust the stat locally, and FB will report that back to the program.
On May 21, 2013, at 3:06 PM, Chris Schley <cssfh3@...> wrote: I'm adapting my thermostat module to work with the infinet thermostat, [Non-text portions of this message have been removed] |
Re: CP3 - IR ports stop working
I had a similar issue with a CP3 a few months ago. In my case the IR outputs were DOA and power cycling, updating firmware, etc. had no effect. Everything else worked fine. I had to RMA the unit.
toggle quoted message
Show quoted text
--- In Crestron@..., "Jon W" <jonwaldrip@...> wrote:
|
Re: Sure this was asked before
Kool-Aid Drinker
I've tried the weather module when it first came out, failed, and
haven't tried again... Your CP2e is apparently running 4.7.x firmware, which I haven't been impressed with, and don't have any systems running... The weather module is protected, so you can't even pry it open to see what's broken... Time for True Blue. On Tue, 21 May 2013 13:47:27 -0700 (PDT), Chris MacGilfrey <chrmac68@...> wrote: Its with the crestron weather module. The program runs perfect on CP3 without this error |
to navigate to use esc to dismiss