-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPowerNest.ps1
executable file
·334 lines (268 loc) · 9.59 KB
/
PowerNest.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<#
.SYNOPSIS
PowerNest: A PowerShell Interface for Google Nest, Enhancing Accessibility and Convenience.
.DESCRIPTION
This script allows you to interact with your Google Nest using PowerShell. Perform various actions like making specific requests, saying "Hey Google", scheduling alarms, changing the voice of Google Assistant, and more.
.EXAMPLE
PS > Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process; .\PowerNest.ps1
.NOTES
Author: Franck FERMAN
Contact: [email protected]
Version: 1.0.0
.LINK
Repository URL: https://github.com/franckferman/PowerNest
#>
[CmdletBinding()]
param (
[switch]$Help
)
$host.ui.RawUI.WindowTitle = "PowerNest - Control Your Google Nest"
function Show-Help {
[CmdletBinding()]
<#
.SYNOPSIS
Displays help information for PowerNest, an interactive PowerShell script for controlling Google Nest devices.
.DESCRIPTION
PowerNest is an interactive PowerShell script that allows you to control Google Nest devices with voice commands. To use PowerNest, simply run the script, and you will be prompted with an interactive menu to choose from various voice command options.
.EXAMPLE
PS > .\PowerNest.ps1
.LINK
https://github.com/franckferman/PowerNest
#>
param()
$helpText = @"
PowerNest Help Menu
--------------------------------
To run the PowerNest, there are no command-line parameters required. Simply execute the script to start the interactive session.
Example:
PS > Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process; .\PowerNest.ps1
This command temporarily sets the execution policy to Unrestricted for the current PowerShell session and runs the PowerNest script.
For more information and updates, visit:
https://github.com/franckferman/PowerNest
"@
Write-Host $helpText
Write-Host ""
}
function Ask-YesOrNo {
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true)]
[string]$Title,
[Parameter(Mandatory = $true)]
[string]$Message
)
$choiceYes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Yes"
$choiceNo = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "No"
$options = [System.Management.Automation.Host.ChoiceDescription[]]($choiceYes, $choiceNo)
$result = $host.ui.PromptForChoice($Title, $Message, $options, 0)
return $result
}
function Exit-Program {
$host.ui.RawUI.WindowTitle = "PowerShell"
Write-Host ""
exit
}
function Handle-InvalidOption {
Write-Host "`nInvalid option selected. Please try again." -ForegroundColor Red
Start-Sleep -Seconds 1
main
}
function main {
[CmdletBinding()]
param ()
$host.ui.RawUI.WindowTitle = "PowerNest - Franck FERMAN"
Clear-Host
Write-Host ""
Write-Host " ********* " -ForegroundColor Red
Write-Host " ************ " -ForegroundColor Red
Write-Host " **** " -ForegroundColor Yellow
Write-Host " **** " -ForegroundColor Yellow
Write-Host " *** ********" -ForegroundColor Blue
Write-Host " *** ********" -ForegroundColor Blue
Write-Host " **** ****" -ForegroundColor Yellow
Write-Host " **** **** " -ForegroundColor Yellow
Write-Host " ************* " -ForegroundColor Green
Write-Host " ********* " -ForegroundColor Green
Write-Host ""
Write-Host "Hello dearest " -NoNewline
Write-Host "$env:UserName " -NoNewline -ForegroundColor Green
Write-Host "and welcome to " -NoNewLine
Write-Host "PowerNest" -NonewLine -ForegroundColor Green
Write-Host "."
Write-Host ""
Write-Host "1 - Specific request"
Write-Host "2 - Hey Google"
Write-Host "3 - Schedule an alarm"
Write-Host ""
Write-Host "10 - Change the voice of your assistant"
Write-Host ""
Write-Host "42 - Random funny feature"
Write-Host ""
Write-Host "0 - Exit program"
Write-Host ""
[int]$userChoice = Read-Host "Your choice"
switch ($userChoice) {
1 { Invoke-SpecificRequest }
2 { Invoke-HeyGoogle }
3 { Invoke-ScheduleAlarm }
10 { Invoke-ChangeVoice }
42 { Invoke-FunnyFeature }
0 { Exit-Program }
default { Handle-InvalidOption }
}
}
function Invoke-SpecificRequest {
[CmdletBinding()]
param ()
Write-Host ""
Write-Host "Write the message you want to tell your Google Assistant." -ForegroundColor Cyan
Write-Host ""
$User_Input = Read-Host "Enter your request"
if (-not ([System.Management.Automation.PSTypeName]'System.Speech.Synthesis.SpeechSynthesizer').Type) {
Add-Type -AssemblyName System.speech
}
try {
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SpeakAsync('Hey Google') | Out-Null
Start-Sleep -Seconds 1
$speak.SpeakAsync($User_Input) | Out-Null
Write-Host ""
Write-Host "Your request has been processed." -ForegroundColor Green
Write-Host ""
}
catch {
Write-Host ""
Write-Host "An error occurred while processing your request." -ForegroundColor Red
Write-Host ""
}
pause
main
}
function Invoke-HeyGoogle {
[CmdletBinding()]
param ()
try {
if (-not ([System.Management.Automation.PSTypeName]'System.Speech.Synthesis.SpeechSynthesizer').Type) {
Add-Type -AssemblyName System.speech
}
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SpeakAsync('Hey Google') | Out-Null
Write-Host ""
Write-Host "Initiating interaction with Google..." -ForegroundColor Cyan
Write-Host ""
}
catch {
Write-Host ""
Write-Host "An error occurred while trying to initiate interaction with Google." -ForegroundColor Red
Write-Host ""
}
pause
main
}
function Invoke-ScheduleAlarm {
[CmdletBinding()]
param ()
Write-Host ""
Write-Host "Please specify the time for the alarm." -ForegroundColor Cyan
Write-Host ""
$time = Read-Host "Time (e.g., 10AM, 10PM, or in 60 minutes)"
Write-Host ""
Write-Host "Please specify the date for the alarm." -ForegroundColor Cyan
$date = Read-Host "Date (e.g., tomorrow, every day, or specific date like 'July 16 2022')"
try {
if (-not ([System.Management.Automation.PSTypeName]'System.Speech.Synthesis.SpeechSynthesizer').Type) {
Add-Type -AssemblyName System.speech
}
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SpeakAsync('Hey Google') | Out-Null
Start-Sleep -Seconds 1
$speak.SpeakAsync("Schedule an alarm for $date at $time") | Out-Null
Write-Host ""
Write-Host "Your request to schedule an alarm for $date at $time has been communicated to Google Assistant." -ForegroundColor Green
Write-Host ""
}
catch {
Write-Host ""
Write-Host "An error occurred while trying to schedule the alarm." -ForegroundColor Red
Write-Host ""
}
pause
main
}
function Invoke-ChangeVoice {
[CmdletBinding()]
param ()
try {
if (-not ([System.Management.Automation.PSTypeName]'System.Speech.Synthesis.SpeechSynthesizer').Type) {
Add-Type -AssemblyName System.speech
}
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SpeakAsync("Hey Google") | Out-Null
Start-Sleep -Seconds 1
$speak.SpeakAsync("Change your voice.") | Out-Null
$result = Ask-YesOrNo -Title "PowerNest - MessageBox function - Franck FERMAN" -Message "Confirm changing the Google Assistant voice?"
switch ($result) {
0 {
$speak.SpeakAsync("Yes.") | Out-Null
Write-Host ""
Write-Host "Voice change command has been sent." -ForegroundColor Green
Write-Host ""
}
1 {
$speak.SpeakAsync("No.") | Out-Null
Write-Host ""
Write-Host "Voice change command has been canceled." -ForegroundColor Yellow
Write-Host ""
}
default {
Write-Host ""
Write-Host "An unexpected error occurred. Please try again." -ForegroundColor Red
Write-Host ""
}
}
}
catch {
Write-Host ""
Write-Host "An error occurred while trying to communicate with Google Assistant." -ForegroundColor Red
Write-Host ""
}
pause
main
}
function Invoke-FunnyFeature {
[CmdletBinding()]
param ()
$CommandsList = @(
"Wubba lubba dub dub.",
"What sound does a unicorn make?",
"Self destruct.",
"Sing a Christmas song",
"Show me the money.",
"up, up, down, down, left, right, B, A.",
"Get Schwifty."
)
$Command = $CommandsList | Get-Random
try {
if (-not ([System.Management.Automation.PSTypeName]'System.Speech.Synthesis.SpeechSynthesizer').Type) {
Add-Type -AssemblyName System.speech
}
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
$speak.SpeakAsync("Hey Google") | Out-Null
Start-Sleep -Seconds 1
$speak.SpeakAsync($Command) | Out-Null
Write-Host ""
}
catch {
Write-Host ""
Write-Host "An error occurred while processing the funny feature." -ForegroundColor Red
Write-Host ""
}
pause
main
}
if ($Help) {
Show-Help
}
else {
main
}