Search found 820 matches
- Wed Apr 14, 2021 5:38 am
- Forum: General Support
- Topic: Xbox Controller - button combinations!
- Replies: 22
- Views: 7741
Re: Xbox Controller - button combinations!
Hi PooFox, Doesn't matter, plugins are usually just __init__.py files in a folder (folder name doesn't matter) in the EventGhost/plugins folder on your PC. You can just copy paste the raw code into a new empty file called __init__.py as discribed, restart EG and you should be able to select the plug...
- Sat Apr 03, 2021 7:39 am
- Forum: Plugin Support
- Topic: SchedulGhost
- Replies: 176
- Views: 119357
Re: SchedulGhost
Hmm, I didn't try it, but perhaps if you're using the same name as a running egg timer there would be a difference in some ways..
- Tue Mar 30, 2021 1:17 pm
- Forum: General Support
- Topic: Writing first scripts
- Replies: 2
- Views: 180
Re: Writing first scripts
Hi garce, The communication between autoremote and EG should be no problem to setup - do you need help with that? There is no native way in EventGhost to interact with the Bluetooth stack of Windows, but I you can do those things via command line I belive. Check out this: https://superuser.com/quest...
- Sat Mar 27, 2021 7:23 am
- Forum: General Support
- Topic: EG is not recognizing when a DVD is inserted/drive is mounted
- Replies: 2
- Views: 161
Re: EG is not recognizing when a DVD is inserted/drive is mounted
Hi deudyscout,
Which Version of EG are you using?
Which Version of EG are you using?
- Sat Mar 20, 2021 12:03 am
- Forum: General & Support
- Topic: Download & Changelog
- Replies: 5
- Views: 1389
Re: Download & Changelog
New version: v0.5.22 Introducing button state locks: A new automation feature for your smart home. You can now lock a button to a specific state. A locked button cannot be operated (apart from the state in which it is locked). Not only actions with this button from the UI or scenes are prevented, bu...
- Fri Mar 19, 2021 8:07 am
- Forum: Extensions
- Topic: Z-Way Extension
- Replies: 1
- Views: 1054
Re: Z-Way Extension
New version!
v1.9:
- bug fixes
- small improvements
Get it from the first post!
This version requires at least v1.1.3 of the Z-Way (webserver) plugin to work correctly
v1.9:
- bug fixes
- small improvements
Get it from the first post!
This version requires at least v1.1.3 of the Z-Way (webserver) plugin to work correctly
- Fri Mar 19, 2021 7:58 am
- Forum: Plugin Support
- Topic: Z-Way (Webserver)
- Replies: 33
- Views: 16653
Re: Z-Way (Webserver)
New Version! v1.1.3: - Added additional actions for multi level switches: - StartLevelChange: starts a level change in one direction, but doesn't stop when the button is released - StopLevelChange: stops a running level change That's useful when you have a remote that triggers an event when a button...
- Sat Mar 13, 2021 9:15 am
- Forum: General Support
- Topic: How to setup Wake PC/Laptop from Android outside local network
- Replies: 5
- Views: 494
Re: How to setup Wake PC/Laptop from Android outside local network
Yes, I think so, with the right driver for the Network adapter (the one from the vendor page, not the one from Microsoft)
But I guess it'll also just be able to wake from standby, not when it's shut down
But I guess it'll also just be able to wake from standby, not when it's shut down
- Fri Mar 12, 2021 8:02 pm
- Forum: General Support
- Topic: How to setup Wake PC/Laptop from Android outside local network
- Replies: 5
- Views: 494
Re: How to setup Wake PC/Laptop from Android outside local network
Hi, I'm not sure if you can perform a wake on LAN from WiFi (only ever set this up via cable), but if, you surely need to disable the option that the computer can turn off your wifi adapter to save energy (in the device Manager) As a test, run a ping on a different device for your computer while it'...
- Wed Feb 24, 2021 1:29 pm
- Forum: Plugin Support
- Topic: Z-Way (Webserver)
- Replies: 33
- Views: 16653
Re: Webserver - Z-Way
New version!
v1.1.2:
- Added support for all enocean sensors Z-Way supports. You just need to select the right profile while teaching in the sensor in the Z-Way smart home UI and you will see all telegram information in EventGhost
- Bug fixes
Get it from the first post!
v1.1.2:
- Added support for all enocean sensors Z-Way supports. You just need to select the right profile while teaching in the sensor in the Z-Way smart home UI and you will see all telegram information in EventGhost
- Bug fixes
Get it from the first post!
- Sat Feb 20, 2021 8:04 pm
- Forum: Plugin Support
- Topic: Broadlink plugin - alpha version
- Replies: 117
- Views: 10549
Re: Broadlink plugin - alpha version
It usually depends on how your VPN is setup. Most companies doesn't allow Local network access while on VPN, as this could compromise the company network. If this is the case, it simply can't work with this solution. That your other software is working anyways is because it utilizes a cloud service ...
- Wed Feb 10, 2021 8:02 am
- Forum: General Support
- Topic: Is there any way to trigger with the full event name ?
- Replies: 2
- Views: 363
Re: Is there any way to trigger with the full event name ?
Yes and no 
With O-MEGA you can do this natively.
In EventGhost directly, you need to use a short script inside your macro to check the payload. Have a look here: viewtopic.php?f=2&t=10270&p=53183&hilit ... oad#p53183

With O-MEGA you can do this natively.
In EventGhost directly, you need to use a short script inside your macro to check the payload. Have a look here: viewtopic.php?f=2&t=10270&p=53183&hilit ... oad#p53183
- Tue Feb 09, 2021 9:03 pm
- Forum: General Support
- Topic: Play a sound between noon and 5
- Replies: 13
- Views: 835
Re: Play a sound between noon and 5
Ah, yeah, you're outside a function.. you could have wrapped it all in a function, then return would have worked 
Anyways, I'm happy it's working now!

Anyways, I'm happy it's working now!
- Tue Feb 09, 2021 7:29 pm
- Forum: General Support
- Topic: Play a sound between noon and 5
- Replies: 13
- Views: 835
Re: Play a sound between noon and 5
Well then, I guess your "sys.exit()" is not working. Did you try using "return" instead?
- Tue Feb 09, 2021 2:10 pm
- Forum: General Support
- Topic: Play a sound between noon and 5
- Replies: 13
- Views: 835
Re: Play a sound between noon and 5
Ok, replace:
path = "C:\windows\test"
With
path = "C:\\windows\\test"
And
eg.plugins.System.PlaySound(path + "/" + onlywavfiles[randomnum], 1, False)
With
eg.plugins.System.PlaySound(path + "\\" + onlywavfiles[randomnum], 1, False)
That should do the trick
path = "C:\windows\test"
With
path = "C:\\windows\\test"
And
eg.plugins.System.PlaySound(path + "/" + onlywavfiles[randomnum], 1, False)
With
eg.plugins.System.PlaySound(path + "\\" + onlywavfiles[randomnum], 1, False)
That should do the trick
