I search and can't find any hello world samples to try do some programs.
Any volunteer to deploy this samples?
Start by going to
Configure -> Automation
And in the right bottom corner u can find "Add group", Press it and write "New Group" - ok.
Inside the group, press "Actions"-button in the right down corner, "Add new program", give it a name "Hello World" -ok.
Change the program type to "C# Program"
Press "edit source code"
Now you can start coding
The easiest thing u can do is to trigger a notification:
Program.Notify("Hello", "World");Connect the audio to your HomeGenie and let it speak:
Program.Say("Hello, World!", "en-US");You can turn on modules (leds or lights) by running this code:
Modules.WithName("NameOfYourLight").On();To test the code, press the "Actions"-button in the lower right corner, and "update". After it has compiled the program u can run it by pressing "Actions", "Run".
Hope this helps