-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathtest.lua
More file actions
220 lines (182 loc) · 6.44 KB
/
test.lua
File metadata and controls
220 lines (182 loc) · 6.44 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
-- GUI thing: clear log window
--lmc_xpl_text('From LUA macros', 0.3, 5)
clear();
--lmc_log_module('TMR')
--lmc_log_module('LUA')
--lmc_log_module('KBD')
--lmc_log_module('XPL')
lmc.autoReload = true
--lmc.statistics = true
--lmc_set_xpl_variable('S300/MagnetoKey', 0)
function timerHandler(ts)
print('Timer alarm at time stamp '..ts..'. Waiting 2s.')
lmc_sleep(20000)
print('Timer callback complete')
end
function timerHandlerWhichRuns5seconds(ts)
print('STARTED timer alarm at time stamp '..ts..'.')
lmc_sleep(5000)
print('FINISHED handler which started at time stamp '..ts..'.')
end
--lmc_set_timer(5000, timerHandler)
--lmc_set_timer(10000, timerHandler)
--lmc_xpl_command('sim/magnetos/magnetos_left_1')
--print(lmc_get_xpl_variable('sim/cockpit/autopilot/heading_mag'))
--lmc_sleep(1500)
--lmc_send_input(16, 0, 0) -- press shift
--lmc_send_input(16, 0, 2) -- release shift
--lmc_send_input(67, 0, 0) -- press C
--lmc_send_input(67, 0, 2) -- release C
--lmc_xpl_text('From LUA macros')
--lmc_log_all();
--lmc_log_module('XPL')
--lmc_xpl_log_file('luamacros1.log')
--lmc_log_module('LUA')
--lmc_log_module('DX')
--lmc_log_module('CFG')
--lmc_log_module('SPE')
--lmc_log_module('HTP')
--lmc_log_spool('lmc_spool.log')
print('Version: ' .. lmc.version)
lmc.minimizeToTray = true
if (lmc.minimizeToTray) then
print('Will minimize to tray')
else
print('Won\'t minimize to tray')
end
-- common LUA statement
print('This is LuaMacros. Listing detected devices...');
-- print device table
lmc_print_devices();
-- assign logical name to game device by regexp
-- 1st arg: logical name
-- 2nd arg: regexp applied on DirectX name
-- returns: Found directX name
--print(lmc_device_set_name('LB', '7E9AD920'))
--print(lmc_device_set_name('LB2', '53175550'))
--print(lmc_device_set_name('KBD1', '3970CC3F'))
--print(lmc_device_set_name('KBD2', '31BB05D2'))
--print(lmc_device_set_name('ST', 'Saitek'))
-- remember 2nd param is regexp, so any unique part from that ugly keyboard system id works
--lmc_assign_keyboard('KBD2');
--print(lmc_get_button('LB2', 9))
-- now logical name is assigned to game device
--lmc_print_devices()
--define callback function
log_handler = function(button, direction, ts, flags)
print('Callback for device: button ' .. button .. ', direction '..direction..', ts '..ts..', flags '..flags)
end
--lmc_set_handler('KBD2', log_handler)
-- assign callback to game device, button no 2, press event
-- 1st param: logical name
-- 2nd param: button number
-- 3rd param: direction, 1=down, 0=up
-- 4th param: callback function
--lmc_set_handler('LB',2,0,log_handler)
-- now callback is active
-- another type of device callback - assigned to whole device
-- 1st param: logical name
-- 2nd param: callback function
-- then callback function has 2 parameters and logic is in the function
-- 1st param: button number
-- 2nd param: direction, 1=down, 0=up
--lmc_set_handler('LB',function(button, direction)
-- print('Callback for whole joystick: button ' .. button .. ', direction '..direction)
-- if (button == 3) then
-- lmc_xpl_command('sim/view/still_spot')
--lmc_xpl_command('sim/view/3d_cockpit_cmnd_look')
-- end
--end)
--lmc_set_handler('LB2', log_handler)
--lmc_set_handler('ST', log_handler)
-- add COM port (with default config values) as device
-- 1st param: logical name
-- 2nd param: port name
--lmc_add_com('C3', 'COM3')
-- add COM port (with full config) as device
-- 1st param: logical name
-- 2nd param: port name
-- 3rd param: baud rate
-- 4th param: data bits (8, 7 , 6, 5)
-- 5th param: parity ('N', 'O', 'E', 'M', 'S')
-- 6th param: stop bits (1,2)
--lmc_add_com('C3', 'COM3', 1200, 6, 'E', 2)
-- check device was added
--lmc_print_devices()
-- define callback for whole device using inline function
-- 1st param: logical name
-- 2nd param: callback
--[[lmc_set_handler('C3',function(comVal)
print(comVal)
end)
]]--
-- set rc com splitter - get data buffered and separated by specific string
-- use '' to cancel seprating feature
--lmc_set_com_splitter('C3', 'a')
-- send data to COM port
--lmc_send_to_com('C3', 'ahoj')
--Xplane commands
--print(lmc_get_xpl_variable('sim/aircraft/view/acf_tailnum'))
--lmc_set_xpl_variable('sim/cockpit/radios/nav1_freq_hz', 11130)
-- Display text in Xplane
-- 1st param: text to display
-- 2nd param (optional): y-postion between 0.0 and 1.0 (default 0.3)
-- 3rd param (optional): time to display in sec (default 5)
--lmc_xpl_text('From LUA macros')
--lmc_xpl_text('From LUA macros', 0.5)
--lmc_xpl_text('From LUA macros', 0.7, 10)
-- keyboard handler
--lmc_set_handler('KBD2',function(button, direction)
-- print('Callback for whole keyboard 2: button ' .. button .. ', direction '..direction)
--end)
--lmc_set_handler('KBD2',65, 1, function()
-- print('Callback for keyboard 1 key "a" down')
-- lmc_send_keys('It rocks!')
--end)
--cleanThisKey=cleanThisKey:gsub("%(","%(")
--lmc_set_handler("LB",function(button, direction)
-- cleanThisKey=cleanThisKey:gsub("%(","%(")
--end)
--print(lmc_get_xpl_variable('sim/flightmodel/position/latitude'))
--lmc_load('E:\\lmc.lua')
--lmc_say('Flaps 45')
--lmc_say('Flaps 50')
--print(lmc_http_get('http://www.hidmacros.eu/forum/'))
--varName='sim/cockpit2/radios/actuators/adf1_frequency_hz'
--varName='sim/cockpit/radios/gps_dme_time_secs'
varName='sim/cockpit/autopilot/heading_mag'
lmc_on_xpl_var_change(varName,
function(value, count)
print(varName .. ' changed to ' .. value .. ' with ' .. count .. ' changes')
print(string.format('Value is %d', value))
end, 1000, 5)
print('XPL Callback set')
lmc_on_xpl_var_change('sim/cockpit2/radios/indicators/gps_bearing_deg_mag', function(value, count)
str = 'GP6_' .. string.format("%d", value) .. '|'
print("LUA > Arduino: " .. str .. " (GPS bearing)")
end, 1000, 1)
print('XPL Callback2 set')
lmc_http_server(12345, function(url)
--lmc_xpl_text('From LUA macros', 0.5)
if url:match("^/command/.+") then
lmc_xpl_command(url:sub(10))
elseif url:match("^/get/.+") then
return lmc_get_xpl_variable(url:sub(6))
else
print('Unknown request ' .. url)
end
--return '{"HDG" : 123}', 'application/json'
end)
--lmc_set_axis_handler('LB2',0, 2000, 1000, function(val, ts)
-- print('Callback for axis - value ' .. val..', ts '..ts)
--end)
--for i=1,70 do
-- lmc_set_timer(1000*i, timerHandlerWhichRuns5seconds)
--end
lmc_sleep(2000)
lmc_send_input(0, 1080, 4) -- press и
lmc_send_input(0, 1080, 6) -- release и
lmc_send_unicode(0x222, 1)
lmc_send_unicode(0x222, 0)
lmc_send_unicode(0x1f3cd, 1)
--lmc_send_unicode(0x1f3cd, 0)