Re: D3Pro: Program Generated Incomplete
Same issue here. Project with HZ keypads, a couple rooms folders do not get a name in the D3 generated Simpl program so it does not compile. Just have to complete the MSEND symbol and compile in Simpl Windows for now and then load the .lpz. Hopefully they fix it soon because super annoying.
|
Re: PAC2 Relay programming
|
Re: DaVinci Fireplace control
Thanks for the reply John.
Since we get the correct FB in debugger when pressing the Davinci glass Keypad we figure the board to be ok. -- Sincerely, Craig S. Abitz President Installation Specialties, Inc. 9 Albertson Ave., Suite 4 Albertson, NY 11507 O: 516-484-7929 F: 516-484-7933 C: 516-509-4405
"CONFIDENTIALITY NOTICE" This email contains confidential information which may also be legally privileged and which is intended only for the use of the recipient (s) named above. If you are not the intended recipient. you are hereby notified that the forwarding or copying of this email, or the taking of any action in reliance on its contents may be strictly prohibited. If you received this email in error, please notify us immediately by reply email and delete this message from your system.
We had a job a couple years ago with 3 of these. Two of them worked fine from our end, but on of them didnt respond correctly and give proper feedback. After dealing with Davinci they told us there are different rev serial boards in these and the one with issues is not the correct board which screws up communication. Unfortunately the fireplace contractor did not want to disassemble the whole thing to replace the board and the client gave up fighting witht them to do it. I have a module I could share with you that we modified to make the other two work if you need.
|
Re: DaVinci Fireplace control
Thank you Jon -- Sincerely, Craig S. Abitz President Installation Specialties, Inc. 9 Albertson Ave., Suite 4 Albertson, NY 11507 O: 516-484-7929 F: 516-484-7933 C: 516-509-4405
"CONFIDENTIALITY NOTICE" This email contains confidential information which may also be legally privileged and which is intended only for the use of the recipient (s) named above. If you are not the intended recipient. you are hereby notified that the forwarding or copying of this email, or the taking of any action in reliance on its contents may be strictly prohibited. If you received this email in error, please notify us immediately by reply email and delete this message from your system.
We have done those fireplaces. They have to be polled for any feedback and commands it returns are similar to you have to add some extra logic to parch the retunes based on what you just told it to do.
We had to get TTL adapters before it would work.
Also I believe its 115200 baud and the Fireplace units had to be super close by the rack for it to work/
Jon
|
JPCH, You have the content a bit wrong, with the example he posted it should be:
POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nContent-Type: application/json\nUser-Agent: PostmanRuntime/7.34.0\nAccept: */*\nPostman-Token: c2d76ff9-854d-4daf-81d9-5ed4a8035c99\nHost: 10.95.16.11\nAccept-Encoding: gzip, deflate, br\nConnection: keep-alive\nContent-Length: 36\n\n{\n"method": "getSupportedVersions"\n}
Jim, You might want to look at your headers and see if they are all required. The only one that I know is a must is Host. I would probably try the string below:
POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nHost: 10.95.16.11\nContent-Length: 36\n\n{\n"method": "getSupportedVersions"\n}
That is unless you want to make sure the connection stays connected, then I would use:
POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nHost: 10.95.16.11\nConnection: keep-alive\nContent-Length: 36\n\n{\n"method": "getSupportedVersions"\n}
|
Simpl doesn't support multi-line, so you have to flatten the message down to one line. However HTTP messages MUST be multi-line to be valid syntax. So in Simpl you add a \n for each line. Like so:
POST /axis-cgi/apidiscovery.cgi HTTP/1.1\nContent-Type: application/json\nUser-Agent: PostmanRuntime/7.34.0\nAccept: */*\nPostman-Token: c2d76ff9-854d-4daf-81d9-5ed4a8035c99\nHost: 10.95.16.11\nAccept-Encoding: gzip, deflate, br\nConnection: keep-alive\nContent-Length: 36\n\n{"method": "getSupportedVersions"}\n\n
|
Hi guys. So I'm working with the VAPIX API, and I can get commands to work from postman, but I can't figure out how to format the working commands down to a string I can send out via a TCP client. How do I format the following very basic example?? This is the raw data out of the postman console
POST /axis-cgi/apidiscovery.cgi HTTP/1.1
Content-Type: application/json
User-Agent: PostmanRuntime/7.34.0
Accept: */*
Postman-Token: c2d76ff9-854d-4daf-81d9-5ed4a8035c99
Host: 10.95.16.11
Accept-Encoding: gzip, deflate, br
Connection: keep-alive
Content-Length: 36
?
{
"method": "getSupportedVersions"
}
Thanks in advance Jim
|
Re: Activity Detection module for TSW-x70
Thanks, I'm gonna try that in the future, I never noticed it, I always stopped at "activity detection"? :-D I understand Activity Detection responds to any change on the TP including page flips and various values, but I still think it should eventually reset to 0 when there's no activity, especially when there's such a short time delay of 1t.
Thanks for the tip!
|
Re: Activity Detection module for TSW-x70
Yup, this got me too a few months ago. Use "Touch Detection" instead. I think Activity Detection means anything that happened to the panel like page flip, analog or digital change.
|
Activity Detection module for TSW-x70
Hello. I have a strange behaviour with a bunch of TSW-570P panels, after a customer complaint I noticed that the activity detection module was alway "1" and as soon as I hide a subpage, it momentarily gets to "0" but goes back to "1" I set the time value to "1t" but still, it will stay permanently high even with no activity at all. As a matter of fact the only way to have it pulse to 0 (emphasis on pulse) is to release all the subpages. Anybody noticed something similar? Is it a bug or a feature (lol) ?
I went the old fashion way, tying all the button presses to a OR gate and a OS, but it can be a pain.
Latest firmware 2.004.1041.001
Thanks.
|
Re: DaVinci Fireplace control
We have done those fireplaces. They have to be polled for any feedback and commands it returns are similar to you have to add some extra logic to parch the retunes based on what you just told it to do.
We had to get TTL adapters before it would work.
Also I believe its 115200 baud and the Fireplace units had to be super close by the rack for it to work/
Jon
|
Re: DaVinci Fireplace control
We had a job a couple years ago with 3 of these. Two of them worked fine from our end, but one of them didnt respond correctly and give proper feedback. After dealing with DaVinci they told us there are different rev serial boards in these and the one with issues is not the correct board which screws up communication. Unfortunately the fireplace contractor did not want to disassemble the whole thing to replace the board and the client gave up fighting with them to do it. I have a module I could share with you that we modified to make the other two work if you need.?
|
Re: PAC2 Relay programming
It is under other device. Right click the room you want it in. Select New, Device. Under that Manufacture:[Generic], Type:[All Types] Model:Generic relay-controlled device. Then select One LOW-Voltage Relay
|
Hi All, This is I'm sure its stupidly simple but I'm missing it, since I've never used the PAC2 internal relays before...
In D3, I need to have an internal relay turn on 10s after processor boot up. *** I know how to manage the logic, but I cannot for the life of me see how to attach the trigger to the relay to engage...(would have taken 22sec in SMW!) I know that the relays are shown in the OtherDevices/Auxiliary devices tabs, but I cannot find where/how you would select the relay to control in the programming section...
Any ideas?? TIA!
|
Re: new phone - settings not moved with app
You can text or email them to yourself then import them in. It does not copy passwords.
You click on the setting cog then export. On new device you use "open with" and search for Crestron Go.
|
Re: DaVinci Fireplace control
Thanks very much for responding. We do have the shifter in between already with the same results. -- Sincerely, Craig S. Abitz President Installation Specialties, Inc. 9 Albertson Ave., Suite 4 Albertson, NY 11507 O: 516-484-7929 F: 516-484-7933 C: 516-509-4405
"CONFIDENTIALITY NOTICE" This email contains confidential information which may also be legally privileged and which is intended only for the use of the recipient (s) named above. If you are not the intended recipient. you are hereby notified that the forwarding or copying of this email, or the taking of any action in reliance on its contents may be strictly prohibited. If you received this email in error, please notify us immediately by reply email and delete this message from your system.
Hi Craig,
it seems that the DaVinci uses TTL, Crestron RS232. You need to add a TTL to RS232 shifter inbetween for correct operation. Give google a chance for such a shifter, should be just a few bucks.
Best regards Crestronfreak55
|
new phone - settings not moved with app
is there any way a client can move the settings over for Crestron App/Go when buying a new phone?
|
Re: DaVinci Fireplace control
Hi Craig,
it seems that the DaVinci uses TTL, Crestron RS232. You need to add a TTL to RS232 shifter inbetween for correct operation. Give google a chance for such a shifter, should be just a few bucks.
Best regards Crestronfreak55
|
DaVinci Fireplace control
Hello,
Has anyone been able to integrate a SIMPL program with a DaVinci Fireplace? We have followed the limited instructions, have the recommended adapters and it works with the native DaVinci glass keypad.
We get control using Putty from the USB on my laptop but the feedback is incorrect.? If we control the fireplace from the DaVinci glass keypad the feedback is correct. This tells us the problem is on the Crestron TX$ side or the DaVinci RX$ side.
We are unfamiliar with the differences between TTL and RS232 and wonder if we are missing something there.
Thanks in advance for any troubleshooting help.
|
It let's me edit my posts
|