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: Crestron Mobile Pro G - Designing in Landscape
I just had to use an iPad and download to it, rotate the screen, swear, update "Anchor" settings, repeat...
toggle quoted message
Show quoted text
It was annoying but now I atleast have a template that I can reuse. -andy --- In Crestron@..., "xsdesignstudios" <xsdesignstudios@...> wrote:
|
Re: Free Terminal Program - Update
erikm_101
Hi Rick,
toggle quoted message
Show quoted text
I just downloaded your HTWin yesterday, but cannot get it to work with a serial connection. As soon as I set the type to serial and configure the port and click OK/Apply, the app crashes. An ideas what might be happening? Windows 7 Enterprise, 32 bit. erik --- In Crestron@..., "rickmcneely" <rickmcneely@...> wrote:
|
Re: Storing history of analog values
?? What is this x++ dream?
_____ From: Crestron@... [mailto:Crestron@...] On Behalf Of Brian Sent: Tuesday, February 22, 2011 7:30 AM To: Crestron@... Subject: [Crestron] Re: Storing history of analog values Analog_input analogVal; Analog_output analogStored[maxNumToStore]; integer x; change analogVal { if(x>=maxNumToStore) x=1; else x++; analogStored[x]=analogVal; } function main() { x=0; } --- In Crestron@... <mailto:Crestron%40yahoogroups.com> , "merriweather.randolph" <merriweather.randolph@...> wrote: anyone have a suggestion of how I might accomplish this?
|
Re: IDOC-V Makes Buzzing Noise
erikm_101
They have been in our inventory for several months. Thanks for the info, I will get them sent in for repair.
toggle quoted message
Show quoted text
--- In Crestron@..., "yellowfin684" <jaredhaleck@...> wrote:
|
Re: Bell 9241 PVR - IR driver required (remote is IR/UHF)
I've got it working, I believed I used the dishnetwork version, but if you want my IR file, send me an email to shaun at xperiment2 dot come
toggle quoted message
Show quoted text
thanks shaun --- In Crestron@..., "Brendan McAlpine" <brendan@...> wrote:
|
Re: Storing history of analog values
Analog_input analogVal;
toggle quoted message
Show quoted text
Analog_output analogStored[maxNumToStore]; integer x; change analogVal { if(x>=maxNumToStore) x=1; else x++; analogStored[x]=analogVal; } function main() { x=0; } --- In Crestron@..., "merriweather.randolph" <merriweather.randolph@...> wrote:
|
Re: Storing history of analog values
Jeremy Weatherford
Quick and dirty SIMPL solution is to use an ABUF to make a sort of
delay line, and send a WPULSE (single logic wave pulse) to the enable to shift everything by one: Value -> Value1 Value1 -> Value2 Value2 -> Value3 Value3 -> Value4 etc. Value1 will be the most recent saved, Value4 will be the oldest. Use an ARAM if it needs to survive program reboots. On Tue, Feb 22, 2011 at 10:01 AM, merriweather.randolph <merriweather.randolph@...> wrote: I want to keep a history of 5 to 10 changes to a single analog value. Does anyone have a suggestion of how I might accomplish this? -- Jeremy Weatherford |
Re: Strange memory errors on AES
Jeremy Weatherford
Compacting only happens while the program is stopped afaik, it should
not affect runtime operations. On Tue, Feb 22, 2011 at 10:00 AM, Barry Newton <barry@...> wrote: Do you suppose the AES uses RAM as the temporary memory pool while -- Jeremy Weatherford |
Re: Strange memory errors on AES
Do you suppose the AES uses RAM as the temporary memory pool while compacting? If RAM is somehow getting used up, this might explain what I'm seeing. This program is little different from what I am using in a lot of places, so I have to figure out why here.
toggle quoted message
Show quoted text
Barry On Feb 22, 2011, at 9:47 AM, Jeremy Weatherford wrote:
Program and web files are stored in flash memory, this is also what |
Re: mycrestron.com DNS
got it working today.....not sure what was different. but, it's working.
toggle quoted message
Show quoted text
JC --- In Crestron@..., "erikm_101" <erikm101@...> wrote:
|
Re: Issue Touch Tone (DTMF) via control system
We've stopped using the latch function in call boxes.
toggle quoted message
Show quoted text
Usually, callboxes have 2 relays. We program most user codes for relay 1 (momentary, wired directly to gate), and others for relay 2 (also momentary, wired to our control system). The pulse from the callbox into the control system will trigger a TOGGLE to hold the gate open. (This requires at least a 2-pair wire to and from the callbox.) This also replicates the original callbox operation - enter the "hold open" code to open & hold the gate, enter it again to release. We also have the same control from the touchpanels and iPhone interfaces. Chris On 2/22/2011 8:25 AM, Phil Bridges wrote:
How about just an old external serial modem? |
Re: Does anyone know the number or HDMI keys that the "new" Mac Mini provides?
Absolutely true. I've had Cox Cable transfer me to Netgear tech-support in an attempt to troubleshoot a cable modem that kept resetting. This from a company that fails to complete 3 out of 4 internal transfers between departments; somehow they can send me out to a third-party at the first whiff that it might not be there problem.
toggle quoted message
Show quoted text
--- In Crestron@..., "cchocjr@..." <cchocjr@...> wrote:
|
Re: Strange memory errors on AES
Jeremy Weatherford
Program and web files are stored in flash memory, this is also what
gets compacted periodically. It's what the processor uses instead of a disk. SIMPL+ programs use RAM as working space while they are running, and this is what they are running out of. The AES has a limited amount of memory compared to the PRO2 and other "big" processors, and it's even worse because of the enormous chunk of Adagio SIMPL+ that must be loaded. I would probably start by seeing if some of the modules you are using can be stripped down, or the buffer sizes reduced in the SIMPL+ modules. On Tue, Feb 22, 2011 at 9:39 AM, Barry Newton <barry@...> wrote: I'm curious if anyone has seen this kind of problem, it's a little -- Jeremy Weatherford |
Strange memory errors on AES
I'm curious if anyone has seen this kind of problem, it's a little hard to describe.
Once in perhaps four or five program loads, the program starts up spewing memory errors. Many of the Simpl+ programs which use memory complain they can't write to memory. Eventually the hardware watchdog restarts the unit, but usually the errors start again and the reboot loop continues. I suspect it might be a problem with failure to compact properly on load. The AES has about 3.5MB of memory, my program is about 2.3MB and I have one iPad (650KB) and one iPhone (225K) on there, only one of each type allowed. The problem seems to occur after reloading the iPad/iPhone apps a few times then reloading the program. One time I tried manually compacting when the problem started and I got an error to the effect it couldn't allocate a pool for compaction or something like that (can't recall exactly). To further muddy the waters, I can't seem to recreate the error anywhere but in this one installation. I tried swapping out the AES itself, but it happens on the new one as well. All firmware and software is the latest. Ideas? TB hasn't been helpful. Thanks, Barry |
Re: Issue Touch Tone (DTMF) via control system
How about just an old external serial modem?
toggle quoted message
Show quoted text
On Tue, Feb 22, 2011 at 7:45 AM, yellowfin684 <jaredhaleck@...>wrote:
|
Re: Crestron Mobile Pro G - Designing in Landscape
lunartech
Have you discovered the Anchoring option in VTPro?
Open the Properties tab and select an item on the page, you will see an anchoring option in the properties tab that allows you to deal with the rotation issues to some extent. On a recent foray into it myself I found that setting a sub page: Left=No, Top=No, Right=Yes, Bottom=Yes FixedWidth=Yes, FixedHeight=Yes AND having a sub page 748px wide X 518px high set 400px from top and 10px from left *just* about centers the sub page in portrait mode BUT it slides it to the right edge of the page, to me preferable as they can use their thumb to operate cursor controls close to the edge of the page. I placed a main nav strip horizontally at the top of the page and a footer at the bottom but there is still a big gap between top nav and the sub page in portrait, however in landscape you wind up with a big gap to the left and right of the sub page. I hate it but what else can you do? While it has its own set of shortcomings I still think CommandFusion slays Crestrons answer to the iPad! Seriously, no develop in landscape mode? No horizontal scrolling lists? C'mon Crestron! I could be dead wrong about this but, I'm not so sure about 30 iPads on a single processor with CommandFusion. Seeing as how the EISC limit is around 30 or so, having 30 S+ direct sockets may prove fallible if too many are in use at one time, it would be a real suckfest to run into this problem late in the project. Anyway, HTH ChipG From: Crestron@... [mailto:Crestron@...] On Behalf Of xsdesignstudios Sent: Monday, February 21, 2011 11:24 PM To: Crestron@... Subject: [Crestron] Crestron Mobile Pro G - Designing in Landscape I have a job here that has a vast amount of iPads (around 30) but the caveat to it is a majority of them will be wall mounted. This means they need to be designed in landscape format. Now I've already long ago given up on designing a layout that can be both portrait and landscape friendly opting for mostly portrait designs as they are native to VTPro. The problem I am having is designing this particular job solely in landscape format. I am locking the panels in landscape mode, but I am running into issues in the design of not knowing how to scale my images since we can't discretely build in landscape format in VTPro. I've been wracking my brain today trying to figure out how to do this but can't come up with any good solutions other than to just create a button, load it, and see how it looks. I am using blueprints as well, but they just don't turn out correctly since I can't run them at the desired ratios. Does anyone have any tips/pointers for designs they have done in landscape mode? Anything helps at this point. _____ No virus found in this message. Checked by AVG - www.avg.com Version: 10.0.1204 / Virus Database: 1435/3457 - Release Date: 02/21/11 |
Re: SystemBuilder & DM
Georges Khalil
Thanks for your answer. But how do I setup the switching itself? Where do I
tell SB which TV is on which output and which source is on which input? I may be blind, but I can't find that! When I programmed Prodigy, there was a switching tab that I used. I can't find anything similar with Adagio. Thanks. Georges Khalil, M.Sc.A. Directeur de l'ingnierie Engineering Manager Design Homesync Inc. www.homesync.ca T : 514 965-5227 On Tue, Feb 22, 2011 at 6:10 AM, yellowfin684 <jaredhaleck@...>wrote:
[Non-text portions of this message have been removed] |
to navigate to use esc to dismiss