I want to use a node to emulate keystrokes to type on a windows host remotely. I can send a payload with the text I want to type, but I haven't had any luck finding a node that works which can type out this payload.
I've tried nbr-keyb-mouse, node-red-contrib-sendkeys and looked at a few more and none of them seem to work.
Has anyone else been successful at doing this? Is there some other program I can interact with using node-red to emulate a keyboard?
I want to be able to respond to in-game messages. There's not way to interact in this game except through keyboard / mouse gestures so there's no API to communicating in-game.
Currently I am using a node to cat the log file, which shows me the message I receive.
However, I cannot reply without using the keyboard or some keyboard emulator.
edit:
I am receiving these messages via node-red to home assistant. And I can also send a payload with my message back, also using home assistant. But no way to interact with the game. Either way, I am not against using some other solution, but I do need to be able to do it from my android phone.
Also to make it clear, I am not a programmer and am not really good at this. I can use node-red because I find it easier to program with, so ideally it would have a GUI front end.
II checked out keysendder node.js and it's not easy to me to see how I can use it from my android device to send a message. I'm afraid I'm not that technical.
Perhaps I can integrate with autohotkey from my android device? I'll do a bit of googling for that.