Keyboard Shortcuts
Likes
- Crestron
- Messages
Search
Re: Simpl#/Series 3 module for Tesla vehicle control
#user_library
Tim Johnson
I'll add that my thoughts on usage would mostly pertain to chaining events or scheduling certain events.? There is a mobile app (which uses the same APIs) that owners are able to use for most basic functions.
When I initially wrote the libraries, it was because there was no way to schedule both a start and a stop time for charging the battery.? It allowed one, but not the other (I don't remember which was allowed, at the moment).? In order to ensure that I wasn't charging at peak times, I set a schedule through the MC3. An over-the-air software update from Tesla has since fixed this issue - so I apparently wasn't alone in desiring this. But some things I think it might be useful for are: * Starting the vehicle's HVAC and seat heaters when executing a "Away" command using the Voice Control Registration module or turning on the security system * Being able to look at the vehicle's charged status without having to pull out a phone * There are a number of functions that are generally available from the phone app, but could be convenient to use via display/voice? to not have to dig the phone out * I have not incorporated Homelink into the module, but this could be used for opening/closing the garage door if the vehicle is in range * Seeing if a loved one is driving home from work (I have, at this point, intentionally left out GPS data, but it could be added) I used API mapping to write the libraries, and it describes what all is available (though, not necessarily implemented).? I have no idea if it is still up to date, but it was as of ~18 months ago. |
Re: Simpl#/Series 3 module for Tesla vehicle control
#user_library
Tim Johnson
All,
I noticed today that my initial commit from my old version of source control (not git) was outdated, and would not have compiled because of it.? I have updated it today and committed my changes to the repo. It should be noted that I haven't tested the code in a long time, so if anyone else has a Tesla vehicle, it would be good to get someone else testing (I will also begin doing so this weekend).? This should obviously be done before distributing this to customers. P77HLP - Thank you! I will continue working on documentation this weekend, as well, which should make clearer the usage details.? Do you have a github account?? If you let me know your git user name, I'd be happy to add you as a contributor to the project.? Depending on time available, I could probably stub out the API calls to dummy results for UI testing - but that would take a bit of time, so I'll wait for indication that you're interested before creating the stubs. Regards, Tim |
Re: Software house, Istar Pro access control
¿ªÔÆÌåÓýWhat are you trying to do with it? ? I haven¡¯t done anything intelligent with anything from Software House but I have done systems where the access control system provides contact closures to grant access (e.g. ¡°unlock¡± a touchpanel) either on schedule or card swipe, with the Crestron system returning limited status (panel locked/unlocked, room normal/trouble) likewise via contact closure which the security guys tend to be more on board with/less paranoid about than letting a random device talk directly to their ecosystem. ? -- Lincoln King-Cliby, CTS, DMC-E-4K/T/D ? From: [email protected] [mailto:[email protected]]
On Behalf Of Dave Dunaway
Sent: Friday, October 09, 2020 12:39 PM To: [email protected] Subject: [crestron] Software house, Istar Pro access control ? Has anyone worked with integrating the IStar Pro access control system into a program?? |
Re: Broadcasting UDP serial command
Well I stand corrected.? If I turn off IGMP snooping in my switch, put a UDP symbol in my Crestron MC3 with an address or either 239.0.0.200 or 239.0.0.255, and then use Wireshark to capture all the multicast traffic,? the MC3 indeed sends out either 239.0.0.200 or 239,0.0.255 with the correct destination mac address of 01-00-5e-00-00-c8 or 01-00-5e-00-00-ff respectfully.? BUT, Wireshark reports the packet is malform.? If I send a multicast stream from my laptop using ffmpeg, the packets are not malform.? So it appears that at least the MC3 if formatting the packet incorrectly.
|
Re: cable box LG STB-5500
You have to sign a NDA with LG to get the documents and support isn't really there and their MPI port isn't a 232 port. You will also need their installer remote.?long story, we went with IR.
I know its not very helpful but the time and effort balanced against the LG support made it easy to just go to IR. |
Re: possible data loss
This actually had me looking a bit more this morning as I have been dealing with some issues with a new deployment of the IntrinsicDev AppleTV module.? After downgrading firmware to 1.53 on our PRO3 we still couldnt get the thing to work so I am just bypassing it altogether.? When I removed their modules, the Data Loss notice went away.
I thought that was a bit curious, so I dropped one back in, commented all the signals out and re-compiled.? The IntrinsicDev AppleTV module is definitely throwing those notices. -- Ryan Baldwin CEO | XS Design Studios rbaldwin@... 760.712.2240 |
Re: possible data loss
In a particular smaller project I traced it down to the Crestron Media Server Router v4 module, when commented out it would clear the notice.? But I am getting the same notice on a different project and commenting the same modules out still generates the notice.? Who knows.
-- Ryan Baldwin CEO | XS Design Studios rbaldwin@... 760.712.2240 |
Axis GET command formatting
Michael LaFayette
I need to figure out how to format a browser command for an SIO to enable/disable privacy masking on some Axis cameras.? Below is an example of a command that works when typed into a web browser, but so far I'm having no luck getting it to work with a TCP client and an SIO.? Any suggestions or help would be greatly appreciated.
Thanks,? Michael |
Re: Broadcasting UDP serial command
My experience in the past with trying to do broadcast commands with the UDP symbol is it doesn't work.? But it has been a while since I tried so that may have changed. I've only gotten it to work with pointing it to a specific IP address and doing a one to one communication to another device.
Multicast is a whole other story.? When you send a multicast address, the MAC address is also changes. It is that special MAC address that allow the multicast packet to be routed to the right ports.? Now I am not sure if it is the switch that changes the MAC or if the sending device device that does that MAC address translation. But according to , it looks like it is the sending device that generates the multicast MAC address.? If that is the case, I highly doubt the Crestron UDP module will handle that MAC conversion -- instead, it will probably just send out the MAC address of your processor. |
Re: possible data loss
Tony,
toggle quoted message
Show quoted text
Let me know if you ever trace down where the below issue is. As I said, I'm also seeing it and just haven't had time to trace it. Thanks Jay ------ Original Message ------
From: "Tony Golden" <mrgolden@...> To: [email protected] Sent: 10/9/2020 8:18:42 AM Subject: Re: [crestron] possible data loss Thanks Oliver, and Jay!--- On Friday, October 9, 2020 at 10:04 AM, Jay Basen wrote: |
Re: possible data loss
Good tip Oliver on dealing with conversion.
I hate to state the obvious here but normally when I have some compile error that doesn't point to a specific module, I usually start commenting out modules in the program until the error goes away.? Of course you will get a lot of other error about unconnected signals but when the LONG_INTEGER message goes away, you found your module causing the problem. |
Re: possible data loss
Inconceivable!
toggle quoted message
Show quoted text
--- On Friday, October 9, 2020 at 9:15 AM, Mark Kaye wrote: |
Re: possible data loss
Thanks Oliver, and Jay!
toggle quoted message
Show quoted text
--- On Friday, October 9, 2020 at 10:04 AM, Jay Basen wrote: |
Re: possible data loss
Very interesting.? Thanks Oliver.
------ Original Message ------
From: "Oliver Hall" <oliver.hall@...>
Sent: 10/9/2020 12:32:16 AM
Subject: Re: [crestron] possible data loss Finding the offending lines is one thing, but dealing with them should be easy. |