Compare commits
No commits in common. "a282a95c4e78dddc6edd4d31e47b98efa2aeaf5e" and "2eb907e3832296e1605bc907a20403f6af688b86" have entirely different histories.
a282a95c4e
...
2eb907e383
12
README.md
12
README.md
@ -34,7 +34,6 @@ hideWindowWhenIdle=true
|
|||||||
|
|
||||||
logFolderPath=/var/log/rhasspyVisualConversationTool
|
logFolderPath=/var/log/rhasspyVisualConversationTool
|
||||||
logLevel=5
|
logLevel=5
|
||||||
logFileEnabled=false
|
|
||||||
|
|
||||||
mqttClientServerHostname=mqtt.yourServer.com
|
mqttClientServerHostname=mqtt.yourServer.com
|
||||||
mqttClientServerPort=1883
|
mqttClientServerPort=1883
|
||||||
@ -61,8 +60,6 @@ Put this content into the file (adapt the folder if you changed it above):
|
|||||||
```
|
```
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
export DISPLAY=:0.0
|
|
||||||
|
|
||||||
while(true)
|
while(true)
|
||||||
do
|
do
|
||||||
cd /home/pi/RhasspyVisualConversationTool/
|
cd /home/pi/RhasspyVisualConversationTool/
|
||||||
@ -75,15 +72,6 @@ done
|
|||||||
|
|
||||||
Make it runnable: _chmod 775 /home/pi/Desktop/startConversationTool.sh_
|
Make it runnable: _chmod 775 /home/pi/Desktop/startConversationTool.sh_
|
||||||
|
|
||||||
### Install xdotool to wake up the screen automatically
|
|
||||||
When you address Rhasspy the screen will be turned on. For that feature the external application xdotool is utilized.
|
|
||||||
|
|
||||||
You may still need to install it by executing
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo apt install -y xdotool
|
|
||||||
```
|
|
||||||
|
|
||||||
### Make the script autostart with the graphical user interface
|
### Make the script autostart with the graphical user interface
|
||||||
|
|
||||||
Create this file: _/home/pi/.config/autostart/conversationTool.desktop_
|
Create this file: _/home/pi/.config/autostart/conversationTool.desktop_
|
||||||
|
3
RhasspyVisualConversationTool/.gitignore
vendored
3
RhasspyVisualConversationTool/.gitignore
vendored
@ -74,5 +74,4 @@ RhasspyVisualConversationTool*8883
|
|||||||
RhasspyVisualConversationTool*1883
|
RhasspyVisualConversationTool*1883
|
||||||
keystore.jks
|
keystore.jks
|
||||||
res
|
res
|
||||||
RhasspyVisualConversationTool-settings.ini
|
RhasspyVisualConversationTool-settings.ini
|
||||||
/RhasspyVisualConversationToolLogFile.txt
|
|
@ -127,14 +127,14 @@ public class GUI
|
|||||||
if(!initialConnectionEstablished)
|
if(!initialConnectionEstablished)
|
||||||
initialConnectionEstablished = true;
|
initialConnectionEstablished = true;
|
||||||
|
|
||||||
connectionStatusTextField.setText("Connected: " + "to " + Settings.mqttClientServerHostname);
|
connectionStatusTextField.setText("Connected to: " + Settings.mqttClientServerHostname);
|
||||||
|
|
||||||
if(Settings.hideWindowWhenIdle)
|
if(Settings.hideWindowWhenIdle)
|
||||||
minimizeDelayed();
|
minimizeDelayed();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
connectionStatusTextField.setText("Connected: " + String.valueOf(MQTT.getInstance().getClient().isConnected()));
|
connectionStatusTextField.setText("Not connected");
|
||||||
getFocus();
|
getFocus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -337,36 +337,31 @@ public class GUI
|
|||||||
@Override
|
@Override
|
||||||
public void run()
|
public void run()
|
||||||
{
|
{
|
||||||
Miscellaneous.runExternalApplication("/usr/bin/xdotool key ctrl", 0, null, null);
|
try
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Move the mouse cursor
|
||||||
|
*
|
||||||
|
* Using this amount of movements has proven relatively reliable.
|
||||||
|
* Using less has not always woken up the screen or only woke it
|
||||||
|
* up, but did not also unblank it, resulting in a well-lit, but
|
||||||
|
* still black screen.
|
||||||
|
*/
|
||||||
|
|
||||||
|
Robot robot = new Robot();
|
||||||
|
for(int xCoord = 500; xCoord < 550; xCoord++)
|
||||||
|
for(int yCoord = 500; yCoord < 550; yCoord++)
|
||||||
|
robot.mouseMove(xCoord, yCoord);
|
||||||
|
}
|
||||||
|
catch(Exception e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}});
|
}});
|
||||||
|
|
||||||
t.start();
|
t.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void moveMouseCursor()
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* Move the mouse cursor
|
|
||||||
*
|
|
||||||
* Using this amount of movements has proven relatively reliable.
|
|
||||||
* Using less has not always woken up the screen or only woke it
|
|
||||||
* up, but did not also unblank it, resulting in a well-lit, but
|
|
||||||
* still black screen.
|
|
||||||
*/
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Robot robot = new Robot();
|
|
||||||
for(int xCoord = 500; xCoord < 550; xCoord++)
|
|
||||||
for(int yCoord = 500; yCoord < 550; yCoord++)
|
|
||||||
robot.mouseMove(xCoord, yCoord);
|
|
||||||
}
|
|
||||||
catch(Exception e)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void getFocus()
|
void getFocus()
|
||||||
{
|
{
|
||||||
java.awt.EventQueue.invokeLater(new Runnable()
|
java.awt.EventQueue.invokeLater(new Runnable()
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user