Keyboard Shortcuts
ctrl + shift + ? :
Показати всі комбінації клавіш
ctrl + g :
Не доступний для безкоштовних груп.
ctrl + shift + f :
Знайти
ctrl + / :
Сповіщення
esc to dismiss
Лайки
- Crestron
- Повідомлення
Пошук
Re: Bluetooth control
Hi Markus -- I'm pleased to see you took this and ran with it and found success! Here is what you are going to do to get access to function and media keys. It looks like you have already found the file you need, in order to see that KEY_UP_ARROW sends a hex value of DA. The complete list is here https://github.com/T-vK/ESP32-BLE-Keyboard/blob/master/BleKeyboard.h To send 0xDA from Crestron (as it appears in the link above), you'll just send \xDA in the serial send block. Both of these are notations for representing DA as a hex byte, just in two different contexts. Because \xDA is an escape code, it causes the Crestron processor to emit the single byte with the hexadecimal value DA (rather than the four characters \,x,D,A). Best I can tell, it's really that simple. That should get you the up arrow. It's also trivial to modify the Arduino script to manipulate the data in-stream and translate it, which might be necessary if you're interested in pressing any of the "media keys" (like KEY_MEDIA_PLAY_PAUSE) that aren't defined as a single byte. For example you might test for the byte B0 (just one I picked at random for being unused), and map it to KEY_MEDIA_PLAY_PAUSE by tweaking the Arduino code with the following pattern: if (inputBuffer=="\xB0") bleKeyboard.write(KEY_MEDIA_PLAY_PAUSE); else if (inputBuffer=="\xB1") bleKeyboard.write(KEY_MEDIA_STOP); else if (...repeat this same pattern for more keys...) bleKeyboard.write(...more keys...); else bleKeyboard.print(inputBuffer); // Existing line that sends any keys not caught by the above "if" statements You don't need to make any of these modifications if all you want is arrow and function keys and other normal keyboard keys, which are already available as single bytes you can send from Crestron. Mike On Sun, Dec 15, 2024 at 9:03 AM Markus Vollmer via groups.io <crestron=markusvollmer.com@groups.io> wrote:
|
CHV-TSTATRF not showing up on touchscreens
Hi all,
I have a strange problem with one CHV-TSTATRF not reporting to any touchscreens. It had been working fine until I had the replace the batteries. There are four TSTATS in the system and the other three are working fine but for some reason this one stopped reporting back to the program and touchscreens after I changed the batteries. It shows up in the MNET gateway and I even tried reaquiring it but that didn’t fix the problem. Anyone have thoughts on what the problem could be? |
Re: Bluetooth control
On Fri, Nov 29, 2024 at 12:15 PM, Michael Caldwell-Waller wrote:
Hi Mike,
thank you so much for your input!
I took the plunge and ordered three sets of the parts that you recommended.
Following your detailed instructions, I got the Bluetooth keyboard recognized by the smart monitor, but I am struggling with the syntax of the strings that I can send via RS232.
The HID keyboard bluetooth library that is being used is said to have the same functionality as the USB keyboard, if I got that right.
Having a look at the Arduino keyboard documentation, I found a section where they explain, how to trigger non-ASCI keys, like the function key F1 to F20, the arrow keys and so on, as those are the keys I need to control the monitor.
But what would the syntax be of what I send via RS232 to the "Bluetooth keyboard dongle", e.g. for the navigation up key where they say "Key: KEY_UP_ARROW, Hexadecimal value: 0xDA, Decimal value: 218"? Do I need a delimiter?
Have you tried to send anything but ASCII characters via these magic devices?
Thanks agaiin!
Markus
|
Re: Bluetooth control
On Tue, Dec 3, 2024 at 08:47 AM, Greg B wrote:
I do have the challenge that I have a Samsung TV and a Samsung "smart" PC monitor (ViewFinity S9 5K monitor) in the same room and for a number of IR commands they both react on the same commands. I don't use the IP-TV stuff in the monitor, but for some settings, the remote is needed. Now if I can control the monitor via Bluetooth and the TV via IR, then I would be fine! ;-)
|
Re: Recommandation for better organise Press/Visibility Digital join
When he says leave some space, think in tens or hundreds not thousands. I had a takeover that they had decided to use thousands for source control. It was something like, Satellite started on 6001, Blu-ray 7001, Apple TV 8001 and so on. This makes for a lot of time scrolling. Plus i think the last usable join it 14999. Something to keep in mind, every join number from 1 to the last used join gets assigned in the simpl program. So if you are only using join 10000 and opened that program in a text editor you see all 10000 joined defined. I’m not sure how this is interpreted during compile, but I would guess it gets compiled as well.
|
Re: New Roku Issues
I can confirm Steve's reporting of issue number one as I have clients calling. :-( Some more detail:
-This seems to have been enabled between Roku v14.0 and v14.1, My testing was done on an Ultra 4640X.
-In Crestron Home the device will appear as online under pairing but will be uncontrollable (the old trick of changing the port away from 8060 and back does not work).
-Clarifying Steve's post, the menu path is Settings>System>Advance system settings>Control by mobile apps>Network access
Once you change the setting to "Enabled" Crestron will reconnect immediately. No rebooting or restarting of anything required.
-Jim |
Re: any working NTP servers
Pretty sure Crestron processors only allow for time zone adjustment, as far as I’m aware there’s no DST offset in the web interface.
переключити цитоване повідомлення
Показати цитований текст
I have a site that relies heavily on schedules so I’m keen to get this correct. Tim Greenbank Control Systems Engineer On 14 Dec 2024, at 09:13, Paul Dengate via groups.io <paul.dengate@...> wrote:
|
Re: any working NTP servers
Side question… do NTP servers adjust for daylight savings?
переключити цитоване повідомлення
Показати цитований текст
Tim Greenbank Control Systems Engineer On 14 Dec 2024, at 06:21, Brad Wykoff via groups.io <bradwykoff@...> wrote:
|
81 - 100 з 255337
Повідомлення
Більше
Додаткові параметри
Більше
to navigate to use esc to dismiss