This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; probe z- | |
g92 z0 ; set current position as temporary origin | |
g91 ; relative positioning | |
g38.2 z-20 f50 ; probe z | |
g92 z0 ; set current position as z0 | |
g0 z2 f480 ; back off of work | |
; probe x+ | |
g91 ; relative positioning | |
g38.2 x50 f100 ; probe x0 (remember to account endmill radius afterwards) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
start /d "C:\Program Files (x86)\AlphaConsole" AlphaConsole.exe | |
timeout /t 1 | |
start steam://rungameid/252950 | |
timeout /t 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import abc | |
import time | |
import logging | |
class AeneaServer(object): | |
""" | |
AeneaServer is a jsonrpc server that exposes emulated keyboard/mouse input | |
over the network. | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from aenea.wrappers import ensure_execution_context | |
from aenea import Key | |
import time | |
time.sleep(5) | |
# get context ahead of time so our timing is more accurate | |
DATA = ensure_execution_context({}) | |
def press_separate(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Drop this script into ./server/linux_x11/ and run it to compare get_context | |
implementations! | |
pip install -e 'git+https://github.com/rshk/python-libxdo.git#egg=python-libxdo' | |
pip install python-xlib | |
pip install psutil | |
In my ubuntu machine I needed the following package... | |
sudo aptitude install libX11-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Subscribe to X11 PropertyChange events and print "Window Changed!" when a | |
_NET_ACTIVE_WINDOW property has been changed. | |
Unfortunately no event is received events when _NET_WM_NAME is changed so this | |
would only partially solve https://github.com/dictation-toolbox/aenea/issues/103 | |
You'll have to `pip install python-xlib` to run this script. | |
(Tested with the Cinnamon 2.2.16 desktop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
sys.path.append('c:\NatLink\NatLink\MacroSystem') | |
import time | |
import aenea | |
from aenea import Text | |
from aenea.wrappers import ensure_execution_context | |
class BatchTextActionExecutor(object): | |
def __init__(self): | |
self.batch = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import threading | |
import time | |
class MyBlockingSubscription(object): | |
def __init__(self, handler): | |
super().__init__() | |
self.handler = handler |