-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAssistant.cs
109 lines (89 loc) · 2.91 KB
/
Assistant.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Speech;
using System.Speech.Recognition;
using System.Speech.Synthesis;
using System.IO;
using System.Drawing.Imaging;
namespace Smart_Application
{
public partial class Assistant : Form
{
SpeechRecognitionEngine recEngine = new SpeechRecognitionEngine();
SpeechSynthesizer speech = new SpeechSynthesizer();
System.Media.SoundPlayer music = new System.Media.SoundPlayer();
public Assistant()
{
InitializeComponent();
Choices choices = new Choices();
string[] text = File.ReadAllLines(Environment.CurrentDirectory + "//grammer.txt");
choices.Add(text);
Grammar grammar = new Grammar(new GrammarBuilder(choices));
recEngine.LoadGrammar(grammar);
recEngine.SetInputToDefaultAudioDevice();
recEngine.RecognizeAsync(RecognizeMode.Multiple);
recEngine.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(recEngine_SpeechRecognized);
speech.SelectVoiceByHints(VoiceGender.Female);
}
private void recEngine_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
{
string result = e.Result.Text;
if (result == "Hello Zain")
{
result = "Hello, I am Zain State your Command";
}
if (result == "Lights On")
{
result = "Activated";
}
if (result == "Refridgerator On")
{
result = "Activated";
}
if (result == "Air Conditioner On")
{
result = "Activated";
}
if (result == "Temprature On")
{
result = "Activated";
}
if (result == "Lights Off")
{
result = "Dectivated";
}
if (result == "Refridgerator Off")
{
result = "Deactivated";
}
if (result == "Air Conditioner Off")
{
result = "Deactivated";
}
if (result == "Temprature Off")
{
result = "Deactivated";
}
if (result == "EXIT")
{
this.Hide();
}
speech.SpeakAsync(result);
txtlabel.Text = result;
}
private void Assistant_Load(object sender, EventArgs e)
{
}
private void guna2Button8_Click(object sender, EventArgs e)
{
this.Hide();
}
}
}