¿ªÔÆÌåÓý

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

Re: Opening SMW Projects

 

¿ªÔÆÌåÓý

SIMPL+ is particularly bad where it¡¯s like ¡°OK, which instance did this pop up in¡± ¨C maybe my ADHD tendencies and having 5-10 copies of SIMPL open any given time are partially to blame but why a SIMPL+ compile needs to pop a dialog in _any_ of the SIMPL Windows instances is beyond me and very frustrating. Particularly when another dialog is over the dialog so you can¡¯t give it focus and you have to start killing things in Task Manager to get back to something you can use.

?

--

Lincoln King-Cliby, CTS, DMC-E-4K/T/D
Commercial Market Director
Sr. Systems Architect | Crestron Certified Master Programmer (Diamond)
ControlWorks Consulting, LLC
Direct: (+1)440.771.4807 | Cleveland: (+1)440.449.1100? | Boston: (+1)508.695.0188 | DC: (+1)202.381.9070? | Fax: (+1)440.449.1106
Crestron Services Provider | Biamp Authorized Independent Programmers | Extron Qualified Independent Programmer

?

From: [email protected] [mailto:[email protected]] On Behalf Of ckangis
Sent: Thursday, March 03, 2022 11:26 AM
To: [email protected]
Subject: Re: [crestron] Opening SMW Projects

?

And don't get me started about when you have multiple instances open, and you do something like a module save or program compile with one instance, but a related pop-up is only found on another instance...
You sit there waiting for it to be done and realize that you have to go find and clear the pop-up on one of the other instances for things to move forward...Arrggghh!!!


Re: Cisco 9300 Switch Setup

 

¿ªÔÆÌåÓý

A ¡°real¡± Cisco switch will generally act as a pretty dumb device out of the box ¨C packets should flow, but they really aren¡¯t intended to be just powered up and forgotten ¨C with great (switching) power comes great (switching) responsibility.

?

In IOS, commands can be abbreviated to the shortest non-ambiguous form, e.g. the command ¡°SHOW¡± can be abbreviated to ¡°SH¡±, etc. You can¡¯t do any damage with a SHOW so there¡¯s no harm in poking around a bit. You can also use the ? to suggest possibilities (e.g. SH ?? or SH INT ?)

?

SH INTerface STATUS is basically ¡°Tell me about all of your interfaces (ports, VLANs, LAG groups, etc)¡± and is a very helpful starting point for most troubleshooting¡­ For example the first few lines from my ¡®core¡¯ switch

?

CLH-FL1-SW01# sh int status

?

Port????? Name?????????????? Status?????? Vlan?????? Duplex? Speed Type

Gi1/0/1?? Redundant WAN IF?? disabled???? 102????????? full?? auto 10/100/1000BaseTX

Gi1/0/2????????????????????? notconnect?? 1??????????? auto?? auto 10/100/1000BaseTX

Gi1/0/3?? (2)1-3-3A Guest Be notconnect?? 1??????????? auto?? auto 10/100/1000BaseTX

Gi1/0/4?? (2)1-3-3B Front Do connected??? 3????????? a-full? a-100 10/100/1000BaseTX

?

So port 1/0/1 is disabled (I explicitly turned it off) and is on VLAN 102 but is configured for full duplex and auto negotiate speed, while the port is capable of 10/100/1000 on copper. ?Port 1/0/2 on the other hand is enabled but there¡¯s no link (since I haven¡¯t assigned a description to the port I think it¡¯s safe to assume nothing is there) but if it were there would be be on VLAN 1, auto speed and duplex. Finally, Port 1/0/4 is connected (enabled+link) on VLAN3 and the speed and duplex have been autonegotiated (a-) as full and 100mb respectively.

?

SH RUNning-config can also be handy to show you the configuration that the switch is running (essentially, everything that has been changed from the firmware defaults. You can also use SH RUN INT <interface ID> to just see the info applicable to that interface. The other nice thing about this is that these are presented exactly as you would enter them in CONFigure mode if you wanted to make changes ¨C if there¡¯s a port already configured the way you want it, you can literally copy and paste. For example, if we wanted a bit more visibility about what¡¯s going on for interface GI1/0/4

?

CLH-FL1-SW01#sh run int gi1/0/4

Building configuration...

?

Current configuration : 239 bytes

!

interface GigabitEthernet1/0/4

description (2)1-3-3B Front Door Touchpanel

switchport access vlan 3

switchport mode access

switchport block multicast

spanning-tree portfast edge

no ip igmp snooping tcn flood

ip igmp filter 1

end

?

CLH-FL1-SW01#

?

(Incidentally, the no ip igmp snooping tcn flood is pretty critical for NVX and other high-bandwidth multicast devices, but that¡¯s a rabbit hole we don¡¯t need to go down at the moment)

?

And last item for this crash course in Cisco CLI, show logging shows you the most recent log entries, for example just a snapshot of the top few¡­ ?

?

CLH-FL1-SW01#sh logging

Syslog logging: enabled (0 messages dropped, 0 messages rate-limited, 0 flushes, 0 overruns, xml disabled, filtering disabled)

?

No Active Message Discriminator.

?

?

?

No Inactive Message Discriminator.

?

?

??? Console logging: level debugging, 2215 messages logged, xml disabled,

???????????????????? filtering disabled

??? Monitor logging: level debugging, 0 messages logged, xml disabled,

???????????????????? filtering disabled

??? Buffer logging:? level debugging, 2215 messages logged, xml disabled,

??????????? ????????filtering disabled

??? Exception Logging: size (4096 bytes)

??? Count and timestamp logging messages: disabled

??? File logging: disabled

??? Persistent logging: disabled

?

No active filter modules.

?

??? Trap logging: level informational, 2188 message lines logged

??????? Logging Source-Interface:?????? VRF Name:

?

Log Buffer (4096 bytes):

up

002173: Mar? 2 16:59:29: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/40, changed state to down

002174: Mar? 2 16:59:30: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/40, changed state to down

002175: Mar? 2 16:59:37: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/40, changed state to up

002176: Mar? 2 16:59:38: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/40, changed state to up

?

?

So port GI1/0/40 went down at 16:59:29 yesterday, and then came back up at 16:59:38. Since I apply port descriptions to my switches we can also use SH INT GI1/0/40 DESC to figure out what that is, or we can look at the MAC address table for the port to start hunding:

?

CLH-FL1-SW01#sh int gi1/0/40 desc

Interface????????????????????? Status ????????Protocol Description

Gi1/0/40?????????????????????? up???????????? up?????? (2)1-6-2 3rd Floor Office (Personal PC)

CLH-FL1-SW01# sh mac address-table int gi1/0/40

????????? Mac Address Table

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

?

Vlan??? Mac Address???? ??Type??????? Ports

----??? -----------?????? --------??? -----

?? 1??? 90b1.1c69.d39e??? DYNAMIC???? Gi1/0/40

Total Mac Addresses for this criterion: 1

?

Nothing to? exciting there probably just applying an update or something.

--

Lincoln King-Cliby, CTS, DMC-E-4K/T/D
Commercial Market Director
Sr. Systems Architect | Crestron Certified Master Programmer (Diamond)
ControlWorks Consulting, LLC
Direct: (+1)440.771.4807 | Cleveland: (+1)440.449.1100? | Boston: (+1)508.695.0188 | DC: (+1)202.381.9070? | Fax: (+1)440.449.1106
Crestron Services Provider | Biamp Authorized Independent Programmers | Extron Qualified Independent Programmer

?

From: [email protected] [mailto:[email protected]] On Behalf Of simpl_2_use
Sent: Thursday, March 03, 2022 9:48 AM
To: [email protected]
Subject: Re: [crestron] Cisco 9300 Switch Setup

?

Lincoln - First, thanks for any help you can offer as I am not familiar at all with many of the terms you are using, but will work on them.

This is an out of the box 9300.? Literally, I have NEVER had to connect using the console on the switches I've used up to this point, the SG350.? It has worked out of the box, more or less like an unmanaged switch and has passed Dante and control with zero configuration.? I have, in the past, followed Crestron's setup guide through the web interface for the SG350 for NVX devices, but I have no NVX devices in this setup.

As it is out of the box, I assume there are no VLANS, or more likely there should be a single default VLAN which everything should be able to connect to and use.

I will spend some time today playing with some of the commands you listed, but I'm not sure I understand what they all mean.? I have a second 9300 as well which I can play with.

I really just want the 9300 to act pretty much like a unmanaged switch in most of my setups.? There will be a single switch and it won't be connected to a corporate network at all.? Completely stand alone.


Re: Opening SMW Projects

 

And don't get me started about when you have multiple instances open, and you do something like a module save or program compile with one instance, but a related pop-up is only found on another instance...
You sit there waiting for it to be done and realize that you have to go find and clear the pop-up on one of the other instances for things to move forward...Arrggghh!!!


Re: Primer for 4Series Modules #simplsharppro

 

VS2022
1) .Net Framework 4.8 Class Library Project
2) Import Nuget "Crestron.SimplSharp.SDK.Library"
3) Compile
4) Grab the CLZ from the output bin folder
5) Import into S+

I've only tried a couple of methods a non parameterized constructor but seems to work.


Re: OT - Proximity Sensor

 

Now that I know the use case I would suggest using photoelectric sensors similar to what is used on urinals and sinks. There are a lot of different ones used in industrial automation.


Re: Cisco 9300 Switch Setup

 

Lincoln - First, thanks for any help you can offer as I am not familiar at all with many of the terms you are using, but will work on them.

This is an out of the box 9300.? Literally, I have NEVER had to connect using the console on the switches I've used up to this point, the SG350.? It has worked out of the box, more or less like an unmanaged switch and has passed Dante and control with zero configuration.? I have, in the past, followed Crestron's setup guide through the web interface for the SG350 for NVX devices, but I have no NVX devices in this setup.

As it is out of the box, I assume there are no VLANS, or more likely there should be a single default VLAN which everything should be able to connect to and use.

I will spend some time today playing with some of the commands you listed, but I'm not sure I understand what they all mean.? I have a second 9300 as well which I can play with.

I really just want the 9300 to act pretty much like a unmanaged switch in most of my setups.? There will be a single switch and it won't be connected to a corporate network at all.? Completely stand alone.


Re: Opening SMW Projects

 

I agree Jason...
However, I find it easier to simply hold down the Shift key, and click the app icon in the Task bar.? I do this for toolbox, as well as file explorer, and every other app.

The only time I open a file manually from within Simpl using File:Open is if I already have extra instances open, and I want to open a different project.? It opens way faster if Simpl is already running, than if I close the instance I have and then restart up a new instance with the new file I want to start using.


Re: Extron DXP HD 4K PLUS

 

Hello,

?

Thanks for your interest.

As you comment on other devices, they had a way to dump the state in whinch their inputs and outputs were depending on the state of the verbose, but in this device i have not found it, so i Will use the idea that it has given me to know how finds the device by connecting to it.

Thank you very much for your lines.


Re: Extron DXP HD 4K PLUS

 

¿ªÔÆÌåÓý

What status are you interested in?

?

I don¡¯t have one in front of me but Extron products tend to be pretty consistent ¨C you should be able to query for any status you care about. For example (see page 63/PDF page 69 of the manual ) if you send x% where X is the output number you¡¯re interested in that will report the video input tied to the corresponding output (x$ will report the audio input for the output, x! will report both ¨C though if you¡¯re breaking away audio and video this may yield less than desirable results) ¨C IIRC, in the past some switchers would dump their entire status if you just sent % $ or ! without a number, but since that¡¯s not documented here ?you may need to do 1$2$3$4$5$6$... if you want to collect all outputs.

?

Note that for most things to be useful you¡¯ll want the switcher in Verbose Mode 2 or 3.

?

--

Lincoln King-Cliby, CTS, DMC-E-4K/T/D
Commercial Market Director
Sr. Systems Architect | Crestron Certified Master Programmer (Diamond)
ControlWorks Consulting, LLC
Direct: (+1)440.771.4807 | Cleveland: (+1)440.449.1100? | Boston: (+1)508.695.0188 | DC: (+1)202.381.9070? | Fax: (+1)440.449.1106
Crestron Services Provider | Biamp Authorized Independent Programmers | Extron Qualified Independent Programmer

?

From: [email protected] [mailto:[email protected]] On Behalf Of Juan Lopez
Sent: Thursday, March 03, 2022 8:13 AM
To: [email protected]
Subject: [crestron] Extron DXP HD 4K PLUS

?

Hello everyone,
I?m trying to control an Extron DXP HD 4K PLUS and i can?t find a way to get it to report the status of the matrix when i connect to it. When i make a change it does report the status of that specific entry.
I don?t know anyone who has worked with her.
Thanks in advance.

?


Re: OT - Proximity Sensor

 

¿ªÔÆÌåÓý

Thanks David.? That is an interesting idea.

On 3/2/2022 9:45 PM, David George wrote:

What about car alarm radar sensors? They use RF field Disturbance Technology, microwaves, to detect a field disturbance within a contained area. I have installed several myself in cars and they work very well. The nice thing is that the size of the sensing field can be adjusted. They operate on 12 volts and can be used as a single zone sensor outside of an automotive application. This link talks about them a bit more.

?

?

-????????? David


Extron DXP HD 4K PLUS

 

Hello everyone,
I?m trying to control an Extron DXP HD 4K PLUS and i can?t find a way to get it to report the status of the matrix when i connect to it. When i make a change it does report the status of that specific entry.
I don?t know anyone who has worked with her.
Thanks in advance.
?


Spare NVX

 

Hi,

we have urgent need for some NVX boxes. Do you have any new spares?

DM-NVX-D30
DM-NVX-E30
DM-NVX-360
DM-NVX-363

paiste.maenpaa@...


Re: OT - Proximity Sensor

 

¿ªÔÆÌåÓý

What about car alarm radar sensors? They use RF field Disturbance Technology, microwaves, to detect a field disturbance within a contained area. I have installed several myself in cars and they work very well. The nice thing is that the size of the sensing field can be adjusted. They operate on 12 volts and can be used as a single zone sensor outside of an automotive application. This link talks about them a bit more.

?

?

-????????? David


ZUM / AM-200 Question

 

We are trying to install an AM-200, ZUM-AVBridge, ZUM-AVKP, and ZUM-PIR-OCC-BATT with a Samsung TV (QN65Q60AAFXZA) in a few workrooms in an apartment complex (3 identical room setups). The intent is to be able to turn the TV off/on and control TV volume from the ZUM-AVKP, and if the TV is left on, have it turned off when the ZUM-PIR-OCC-BATT detects vacancy.

We've been able to get the space setup and turn the tv off/on using CEC control, but that doesn't account for the volume control. We haven't been able to control the TV using IP or IR drivers, and the model Samsung we have doesn't have EX-Link built in.

Does anyone know if what we're trying is possible? We have little experience with AM-200s and no experience with ZUM products so any help or suggestions would be appreciated. To make things more exciting, our techs are a few states away with flights home Friday morning.

Regards,
Jonathan


Re: OT - Proximity Sensor

 

Hi Tony,

I think tying the operation of the bathroom fan to lights is going to work well in some bathrooms but not in others.? For example, if a bathroom has a small, separate room for the toilet, that doesn't have any windows, then it is a very reasonable solution.? However, if there is a window there may be enough sunlight that an electric light is only turned on at night.? Or, if the toilet is in the room with the sinks then the fan would be running the entire time people are shaving, brushing their teeth, etc.? This would be very energy inefficient.

I fully understand the issues with a sensor in the bathroom; which is why I don't think a camera with motion detection is a workable solution.

But I think there has to be a reasonable compromise somewhere that provides the necessary functionality without scaring people that someone could be watching.

Thanks

Jay

On 3/2/2022 2:03 PM, Tony Golden wrote:
I might be over-simplifying it, but I typically control the bathroom fan based on the lights. If the lights remain on for more than X minutes, the fan is turned on. When the lights are turned off, the fan goes off a couple minutes later.

I'm always hesitant to put any type of sensors in a bathroom (or bedroom) due to privacy concerns. Although I know it's a motion sensor, and the client knows it's a motion sensor, guests might think it's something else - and that's not a good look for the homeowner.


--- On Wednesday, March 2, 2022 at 2:39 PM, Jay Basen wrote:

Thanks everyone for your suggestions. I was going to save this for an article
but I'll share some more details. My idea is to use this sensor for automation
in a bathroom. The sensor would determine if someone is sitting on a toilet
and for how long. If the person is sitting on the toilet for more than ~1
minute then the bathroom fan would be turned on until a few minutes after the
person has gotten up from the toilet. This could be coupled with a humidity
sensor that would turn the fan on when the humidity in the bathroom rises
rapidly (there are plenty of readily available wireless humidity sensors).

My original idea was that this sensor would simply be placed on the toilet tank
and sense when someone was sitting on the toilet.

I agree that a video camera with motion detection could be an excellent
solution for detecting a person in a specific location. However, because this
is in a bathroom, a camera is simply not a viable solution.

A simple motion sensor could be used to simply turn on the fan whenever anyone
is near the toilet or tub/shower but that would be incredibly energy
inefficient. Whenever you use a bathroom fan to vent air to the
outside somewhere in your home that air is being replaced with cold/hot
outside air that your HVAC system then has to heat/cool depending on the
season.

So, right now I'm thinking about building something with the MaxSonar
ultrasonic sensor. This will be a longer term project if I have to start
getting out my soldering iron and hacking things together :-). So, hopefully
sharing more details on how I'm thinking about using the sensor will provide
some fodder for additional ideas.

Thanks again for the help

Jay



Re: Cisco 9300 Switch Setup

 

¿ªÔÆÌåÓý

If you SHow INTerface STATUS on the 9300 what is the interface status for the port the CS is connected to? Which processor?

How many VLANs are in place and are you sure the CS is on the right VLAN?

?

If it is ¡°ERR-DISABLED¡± SHow LOGGING may give you an indication why the port is disabled but generally the device on the other end did something ¡®wrong¡¯. I¡¯m not sure if the default config for a 9300 has BPDU guard enabled (or if you turned it on) but if it does, since the AV4/PRO4 have a built-in switch I can see that causing issues. (and entering CONFigure mode and SHUTdown / NO SHUTdown the port will reset it)

?

If it is ¡°NOTCONNECT¡± it¡¯s not the switch turning the port off, the processor is refusing to link for some reason (hardware or software) ¨C check the processor¡¯s log.

?

If it is ¡°CONNECTED¡± but you don¡¯t have link lights on the processor end, the processor has turned off its Ethernet port, usually because it saw a DHCP OFFER packet from some other source at some point (for some reason at least on the 3-series the implementation of this function left the actual Ethernet link up but just turned the lights on the port on the processor end off which makes troubleshooting REALLY annoying¡­ I haven¡¯t tried breaking a 4-sereis processor yet to see if the behavior has been fixed to actually drop link) ?

?

--

Lincoln King-Cliby, CTS, DMC-E-4K/T/D
Commercial Market Director
Sr. Systems Architect | Crestron Certified Master Programmer (Diamond)
ControlWorks Consulting, LLC
Direct: (+1)440.771.4807 | Cleveland: (+1)440.449.1100? | Boston: (+1)508.695.0188 | DC: (+1)202.381.9070? | Fax: (+1)440.449.1106
Crestron Services Provider | Biamp Authorized Independent Programmers | Extron Qualified Independent Programmer

?

From: [email protected] [mailto:[email protected]] On Behalf Of simpl_2_use
Sent: Wednesday, March 02, 2022 2:38 PM
To: [email protected]
Subject: [crestron] Cisco 9300 Switch Setup

?

Has anyone used/setup a Cisco 9300 switch?

I have used the SG350 and a few other brands of switches in the past with zero issue.? Out of the box, they work fine, or I have followed the NVX setup guide provided by Crestron to get some NVX functionality working.

With these previous switches we have used the Control LAN port on the processor to hand out IP addresses to the devices (not an option).

For some reason the 9300 simply shuts down the connection to the Control LAN port on the processor.? I am unable to get an IP address on my laptop via DHCP through the switch and am not able to see any devices whatsoever.

My obvious mistake for thinking this would act like other Cisco switches which we have used in the past, but would appreciate any insight.

In our current setup, there is not any NVX gear in use.? Just a standard 16x16 DM switch with some Dante audio being carried across it and control.


Re: OT - Proximity Sensor

 

I might be over-simplifying it, but I typically control the bathroom fan based on the lights. If the lights remain on for more than X minutes, the fan is turned on. When the lights are turned off, the fan goes off a couple minutes later.

I'm always hesitant to put any type of sensors in a bathroom (or bedroom) due to privacy concerns. Although I know it's a motion sensor, and the client knows it's a motion sensor, guests might think it's something else - and that's not a good look for the homeowner.

--- On Wednesday, March 2, 2022 at 2:39 PM, Jay Basen wrote:

Thanks everyone for your suggestions. I was going to save this for an article
but I'll share some more details. My idea is to use this sensor for automation
in a bathroom. The sensor would determine if someone is sitting on a toilet
and for how long. If the person is sitting on the toilet for more than ~1
minute then the bathroom fan would be turned on until a few minutes after the
person has gotten up from the toilet. This could be coupled with a humidity
sensor that would turn the fan on when the humidity in the bathroom rises
rapidly (there are plenty of readily available wireless humidity sensors).

My original idea was that this sensor would simply be placed on the toilet tank
and sense when someone was sitting on the toilet.

I agree that a video camera with motion detection could be an excellent
solution for detecting a person in a specific location. However, because this
is in a bathroom, a camera is simply not a viable solution.

A simple motion sensor could be used to simply turn on the fan whenever anyone
is near the toilet or tub/shower but that would be incredibly energy
inefficient. Whenever you use a bathroom fan to vent air to the
outside somewhere in your home that air is being replaced with cold/hot
outside air that your HVAC system then has to heat/cool depending on the
season.

So, right now I'm thinking about building something with the MaxSonar
ultrasonic sensor. This will be a longer term project if I have to start
getting out my soldering iron and hacking things together :-). So, hopefully
sharing more details on how I'm thinking about using the sensor will provide
some fodder for additional ideas.

Thanks again for the help

Jay


Re: OT - Proximity Sensor

 

Thanks Jason. Looks like I could easily integrate an IR proximity sensor with an arduino board that included WiFi. I could also tie in a humidity sensor for an all in one solution.?

Just not sure how hard, or practical, it would be to power that with batteries.?

On Wed, Mar 2, 2022 at 1:29 PM Jason Melvin <jwmelvin@...> wrote:
I use an infrared proximity sensor in a wall box next to my toilet for this purpose. It's worked really well for years.?

On Wed, Mar 2, 2022 at 3:11 PM Thyce : <thyce.colyn@...> wrote:
I have this same thing in my bathroom.? There's a motion sensor hidden under a pedestal sink that's aimed at the toilet.? Works flawlessly.? Although our new TOTO bidet seat makes the ceiling fan unnecessary because the air filter works so good in the seat.

Thyce

On Wed, Mar 2, 2022, 11:39 AM jbasen <jay.m.basen@...> wrote:

Thanks everyone for your suggestions.? I was going to save this for an article but I'll share some more details.? My idea is to use this sensor for automation in a bathroom.? The sensor would determine if someone is sitting on a toilet and for how long.? If the person is sitting on the toilet for more than ~1 minute then the bathroom fan would be turned on until a few minutes after the person has gotten up from the toilet.? This could be coupled with a humidity sensor that would turn the fan on when the humidity in the bathroom rises rapidly (there are plenty of readily available wireless humidity sensors).

My original idea was that this sensor would simply be placed on the toilet tank and sense when someone was sitting on the toilet.

I agree that a video camera with motion detection could be an excellent solution for detecting a person in a specific location.? However, because this is in a bathroom, a camera is simply not a viable solution.

A simple motion sensor could be used to simply turn on the fan whenever anyone is near the toilet or tub/shower but that would be incredibly energy inefficient.? Whenever you use a bathroom fan to vent air to the outside? somewhere in your home that air is being replaced with cold/hot outside air that your HVAC system then has to heat/cool depending on the season.

So, right now I'm thinking about building something with the MaxSonar ultrasonic sensor.? This will be a longer term project if I have to start getting out my soldering iron and hacking things together :-).? So, hopefully sharing more details on how I'm thinking about using the sensor will provide some fodder for additional ideas.

Thanks again for the help

Jay

On 3/2/2022 10:38 AM, MSTC wrote:

I have used these:

?

GLS-OIRLCL-C-CN

?

with some success.? It is possible to ceiling mount it and cover part of the sensor window with tape to adjust the sensing area.? ?It also has some sensitivity adjustment.

?

I kind of like the camera thing as it could cover multiple trigger areas.? The only problem with it is the trigger line will vary with the height of the occupant unless the ceiling is really high.

From: <[email protected]> on behalf of jbasen <jay.m.basen@...>
Reply-To: <[email protected]>
Date: Tuesday, March 1, 2022 at 8:04 PM
To: <[email protected]>
Subject: Re: [crestron] OT - Proximity Sensor

?

Thanks Adam.

Unfortunately, I'm not trying to determine if someone is in a room but in a specific location within the room.? Hence my need to determine if someone is within a foot of the sensor. The need to carry a smart phone is also an issue.

Thanks again.

Jay

On 3/1/2022 5:44 PM, adamzatorski wrote:

?

Is this too far out of the range or maybe not fit the bill due to carrying the cell phone?

?

?

From: [email protected] <[email protected]> On Behalf Of jbasen
Sent: Tuesday, March 1, 2022 1:36 PM
To: [email protected]
Subject: Re: [crestron] OT - Proximity Sensor

?

Thanks!

On 3/1/2022 1:13 PM, mjc76@... wrote:

This is not wireless. But you could hook it to a Crestron CEN-IO-COM-202. I have used it before and they work really well. You will have to make an enclosure for it though.


Re: Hikvision NVR

 

¿ªÔÆÌåÓý

Hi Oliver,

?

thanks for chiming in.

Sure i know i can contact you directly, but i wanted to collect some experience from the crowd as well. ??

I don?t have the NVR yet, currently looking at the options. So thanks for confirming that the ¡°I¡±-part of the model-number is important.

I think i?ll give it a try the the 7616-I2 a try.

?

Cheers,

Thorsten

?

Von: [email protected] <[email protected]> Im Auftrag von Oliver Hall
Gesendet: Mittwoch, 2. M?rz 2022 19:18
An: [email protected]
Betreff: Re: [crestron] Hikvision NVR

?

Hi Thorsten,
The model you have is an I-Series - it's the "-I2" bit at the end that signifies that.? Hikvision's models/series are a nightmare though... so I feel your pain.
The true test as to whether our module will work on the NVR is, go into Configuration and if you see a page called "Live View Settings" (NOT the same as "Live View" on the top bar) then you should be good - we use the same API as that section of the GUI.
If you don't see that, then your NVR doesn't support it (or you might need a firmware update).

Hope that helps,
Oliver (P.S. you can always contact support@...?you know ;-)


Re: TRANE XL1050 WiFi Thermostats

 

This is good news!!