Search found 5500 matches
- Mon Nov 30, 2020 12:35 am
- Forum: Plugin Support
- Topic: Core Audio Plugin
- Replies: 58
- Views: 13592
Re: Core Audio Plugin
It should be because the headphones should show up as a sound device in your sound control panel. When you turn the headphones off the device should get removed from the system and this would cause an Event in EG to occur when using the CoreAudio plugin.
- Mon Nov 30, 2020 12:33 am
- Forum: Anything Goes... Almost Anything
- Topic: Amazon Fraud
- Replies: 13
- Views: 3941
Re: Amazon Fraud
Amazon is also selling counterfeit good as well. and I am not talking about one of the merchants. I am talking shipped by and sold by Amazon. I got 2 different car parts that were counterfeit. One was a TiAL wastegate and the other was a set of StopTech brake pads.
- Mon Nov 30, 2020 12:30 am
- Forum: General Support
- Topic: Running Powershell within Python Script
- Replies: 9
- Views: 1667
Re: Running Powershell within Python Script
that error is actually being generated by powershell and not EventGhost.
send me the power shell script in a PM and let me dink about with seeing what is happening. You will have to zip the script up first.
send me the power shell script in a PM and let me dink about with seeing what is happening. You will have to zip the script up first.
- Mon Nov 30, 2020 12:27 am
- Forum: General Support
- Topic: Running Powershell within Python Script
- Replies: 9
- Views: 1667
Re: Running Powershell within Python Script
let me see the entire traceback
- Mon Nov 23, 2020 5:41 pm
- Forum: Plugin Support
- Topic: Pulse-Eight CEC +
- Replies: 323
- Views: 68392
Re: Pulse-Eight CEC +
Sorry for not responding to you earlier. Let me dig into the problem with the button events not working properly. It could be that your TV doesn't send a CEC signal for releasing the button and that could be causing the problem.. It is going to take a few days for me to set up a test rig with my Sam...
- Fri Nov 20, 2020 6:11 pm
- Forum: General Support
- Topic: Running Powershell within Python Script
- Replies: 9
- Views: 1667
Re: Running Powershell within Python Script
import datetime import time import subprocess import sys timestamp = datetime.datetime.now().time() # Throw away the date information time.sleep(1) start = datetime.time(7, 55) end = datetime.time(12) proc = subprocess.Popen('"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" "C:\\Use...
- Tue Nov 17, 2020 6:54 am
- Forum: EventGhost News
- Topic: I want to say sorry.
- Replies: 2
- Views: 1073
I want to say sorry.
I want to say sorry for not being around as much as I would like to be. I have been super busy. My wife had a sever reduction in the number of hours she is working because of COVID-19. I have been putting in a bunch of time to make some extra $$$. I am just now finishing up working on moving a furna...
- Tue Nov 17, 2020 6:42 am
- Forum: General Support
- Topic: Config file needed for Packard Bell Fast Remote
- Replies: 1
- Views: 855
Re: Config file needed for Packard Bell Fast Remote
you mean this? # Config file for Packard Bell Remotes (with repeat codes!) # created by Samuel Wood (sjw@umr.edu) # # brand: Packard Bell Remote # model: El Cheapo Packard Bell Remote # # This is a config file for the cheap excess Packard Bell remotes # you sometimes can buy from online auctions lik...
- Tue Nov 17, 2020 6:39 am
- Forum: General Support
- Topic: Get windows volume up or down to send to Tasker to control AVR
- Replies: 1
- Views: 682
Re: Get windows volume up or down to send to Tasker to control AVR
OK so here goes # change this is you want messages for every 1/2 percent or every 1.0 percent... You decide on the resolution. INCREMENT = 1.0 new_volume = eg.event.payload[0] old_volume = getattr(eg.globals, 'saved_volume', new_volume) while new_volume < old_volume: old_volume -= INCREMENT # I do n...
- Tue Nov 17, 2020 6:30 am
- Forum: General Support
- Topic: to append windows title to file
- Replies: 2
- Views: 760
Re: to append windows title to file
try the task monitor plus plugin. it is located here https://github.com/Boolean263/EventGhost-TaskMonitorPlus This will tell you when an application has opened and also when it has closed. It will also generate an event if the Window Caption changes. What you are interested in is the payload that is...
- Sat Oct 17, 2020 6:35 am
- Forum: General Support
- Topic: CEC Adapter not waking amp
- Replies: 38
- Views: 6132
Re: CEC Adapter not waking amp
Onkyo receiver should not be an issue to control over lan.
- Thu Oct 15, 2020 3:09 pm
- Forum: General Support
- Topic: CEC Adapter not waking amp
- Replies: 38
- Views: 6132
Re: CEC Adapter not waking amp
That depends. CEC is a bus, so everything you want to control has to be connected via an HDMI cable. Now whether or not your video card supports CEC or not and if it has the 2 HDMI lines are connected together is the question of the day. I do not have an answer to this.You will have to hook it all u...
- Sat Oct 10, 2020 6:57 am
- Forum: Plugin Support
- Topic: Z-Wave
- Replies: 120
- Views: 29358
Re: Z-Wave
OK you have what is called a multichannel device. Multichannel devices are not supported in the current version of the plugin. I did start working on a new version of the plugin. I have not finished it yet as it is a HUGE undertaking. The new version of the plugin when i release it will support mult...
- Fri Sep 25, 2020 2:44 am
- Forum: Anything Goes... Almost Anything
- Topic: Color Suggestions Needed
- Replies: 1
- Views: 610
Re: Color Suggestions Needed
In my media room I used a dark peanut butter color for the walls. I added some white to the same color and lightened it up a lot and used that on the ceiling. On 2 ends of the room there is a kind of step out where the lower half of the wall is thicker then the upper, I used a dark brown on that. I ...
- Tue Sep 22, 2020 9:22 pm
- Forum: General Support
- Topic: Admin Rights At Login
- Replies: 21
- Views: 2984
Re: Admin Rights At Login
the data comes in from various places, USB, Serial, Network, Wireless. what you do in Python is you make a bridge to the connection type and you listen for information coming in. The hard part is sometimes parsing that information, you may have to send a request out that connection in order to get t...