¿ªÔÆÌåÓý

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

Re: jbasen: Shelly temp/humidity sensors

 

Hi Jay,
im using H&T sensor only as a temp probe but i have 2 questions:
1 - i see on console temp have one decimal, it is possible to have out module also?
2 - maybe my mistake somewhere, H&T push me info but i would have expected every celsius degree change but is not so. Now a'm thinking powering H&T every time i need temp feedback using power like polling, any advise?

many thaks in advanced
antonio


Re: Crestron Home with Unifi Cameras

 

What you are doing should work. I checked the unifi cameras.? ?I do have the snapshots turned on (you can access it at the camera ip address as )

My guess is you have accidentally removed too much from the stream URL.

Can you grab mpv or some other player, and try the actual stream URL you have entered into crestron?


Otherwise, check the crestron logs and see what they say.


Does Crestron sell blank adapter inserts for their different colored decora faceplates?

 

Title says it all.

Thanks.


Re: How's it Working Series: SRL

 

Daniel,
Is that a console command, or were you just clarifying your previous post?


Re: How's it Working Series: SRL

 

scroll_To


Re: How's it Working Series: SRL

 

I wonder if there's a way after an update to force a load so that it would perform better on the initial use...


Re: How's it Working Series: TV Presets v2

 

Interesting! So this module requires communications to a service, even after initial setup?? I get that there are updates to be had over time, but if the service is off-line do the existing presets stop working? even with the old list?

If so, that gives me the creeps, as I'll never recoup losses from Weather App issues over the last year!!...:)
I should change my business model to a Loss-based format! HaHa!!


Re: Android Tablet - unable to view H.264/MJPEG Stream #android #crestronapp

 

Have you made sure you're at or under the android app maximum resolution and frame rate?? It looks like the app is significantly lower for h.264 and MJPEG (1280x720@15fps) than the 60 series (1920x1080@30fp).? I've had problems in the past with resolution & fps mis-matches across interfaces.


Re: Android Tablet - unable to view H.264/MJPEG Stream #android #crestronapp

 

Try this - while you streaming object if active on the page subpage, press the tablets power button to turn off screen then wake it up. This has worked for me in the past - it was required often to get it going.?


Re: Error from Multiple program slots used

 

Yea I sent a bug report years ago to tech support and their response was to just ignore it.?


Re: Android Tablet - unable to view H.264/MJPEG Stream #android #crestronapp

 

Check the camera stream to make sure it is set to H.264 and NOT H.265. I have seen a few devices (Speco, ICR) that when they are rebooted they revert the stream back to H.265 braking the stream- its quite annoying.?


Re: How's it Working Series: SRL

 

They definitely slow down pages a bit even on xx60 series panels and are sometimes slow to populate on new panels as well. But they are a great tool and generally once they load they work well


Re: How's it Working Series: TV Presets v2

 

Aside from when the service has outages, it works pretty well. Its fine on 310s but we have alot of jobs with 302s and it will not fit on there correctly. Which sicks as on those we are using V1 presets which are known to bring a processor to its knees. The V2 once in a while will not find any channels in a search but again I think thats provider issues. I know people with Directv have complained about channel lists that do not include local channels- I dont know if that has been fixed or not.?


Re: Crestron Home with Unifi Cameras

 

Ok, need to change my plea hear.? Can someone please direct me to a document that provides a procedure for tying a unifi camera to crestron home?


Re: Error from Multiple program slots used

 

Comment that sh*t out.


Android Tablet - unable to view H.264/MJPEG Stream #android #crestronapp

 

Hi,
I have a Crestron system with a TSW762 & a Android Tablet running the Crestron App. WE have been running the Crestron Embedded Video Smart Object in both to view the? RTSP stream from their PTZ Camera. Originally it worked fine; now we are unable to "see" the stream on the Android Tablet. Attempted to go through Crestron Support, but nothing they recommended resolved issue.
1. We resized the window for an exact 16:9.
2. Tries both H.264 & MJPEG Viewers
3. Deleted & reinserted the Embedded Video Control module
4.Tried both the "Stretch" & 16:9 settings for aspect ratio.
5. Confirmed with Video LAN App to confirm that the URL for the stream is working correctly.
6. We have no issue with the Embedded Video Smart Object on the TSW762 touch panel.
Any advice is appreciated. - Ken


Re: How's it Working Series: SRL

 


Re: Data Type Conversion #simplsharp

 
Edited

So it looks like you're converting from a string to short.
Depends on what the data string looks like..

Try these:
//data is some characters representing a hex value
try
{
    data = "FF"
    int i = int.Parse(data, System.Globalization.NumberStyles.HexNumber);
    ushort value = Convert.ToUInt16(i);
}
catch(Exception ex)
{
    CrestronConsole.PrintLine(ex.ToString());
}

//data is prefixed with 0x
try
{
    data = "0xFF"
    int i = Convert.ToInt32(data,16);
    ushort value = Convert.ToUInt16(i);
}
catch(Exception ex)
{
    CrestronConsole.PrintLine(ex.ToString());
}

//data is a string of binary
try
{
    data = "11110000"
    int i = Convert.ToInt32(data,2);
    ushort value = Convert.ToUInt16(i);
}
catch(Exception ex)
{
    CrestronConsole.PrintLine(ex.ToString());
}

//data is a string representing numbers
try
{
    data = "1234"
    int i = Convert.ToInt32(data);
    ushort value = Convert.ToUInt16(i);
}
catch(Exception ex)
{
    CrestronConsole.PrintLine(ex.ToString());
}


Re: Data Type Conversion #simplsharp

 

Hello Jeremy would you know of a good resource to better understand data type conversions from SIMPL# to SIMPL+? I have reviewed the Microsoft docs but I am still having issues understanding.


Re: CH5 web panel release

 

Got it to work with the Crestron One iPad app.? Making progress.? For those learning like me, go into the ipad setup and locate the Crestron One app, turn on HTML5 UI Mode.? Go back to the app and you should be at home with those settings.

Still am trying to get the web xpanel to work.? It loads but no connection to the processor.