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: Storing history of analog values
mjrtoo2000
I might use a ring buffer, and an ABUF with multiple selects defined driven by the ring buffer. Setup the ring buffer clock and Store/Recall on the ABUF as you see fit.
toggle quoted message
Show quoted text
--- In Crestron@..., "merriweather.randolph" <merriweather.randolph@...> wrote:
|
First Alert Alarm
Has anyone intigrated a FirstAlert FA-1670C
I currently am having trouble communicating with the alarm panel The alarm company says it's a re-branded Vista 128bp All the setup feilds seem to be the same in that alarm setup. The interface module is a Honeywell 4100SM. I can see data on the from_device$ in Debugger whenever I open or close a door, but I cannot get the alarm to respond to a Poll or get feedback out of the zone status module. Thanks Jim A |
Re: Issue Touch Tone (DTMF) via control system
Joseph Vossen
I couldn't find a commercial product, but the webatron is filled with circuits to build your own, here is one example: <>
toggle quoted message
Show quoted text
On Feb 22, 2011, at 7:45 AM, yellowfin684 wrote:
Ive got a gate to control that has momentary contact closure inputs to both open and close the gate. But the phone system is tied to the gate and from the phone system, you have more control. By pressing the following buttons: |
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:
|
to navigate to use esc to dismiss