-
Notifications
You must be signed in to change notification settings - Fork 0
/
lua_esp.cpp
211 lines (145 loc) · 5.35 KB
/
lua_esp.cpp
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
////////////////////////////////////////////////////////////////////////////////
//INCLUDE FILES
////////////////////////////////////////////////////////////////////////////////
#include <arduino.h>
#include "src/ESP8266TrueRandom/ESP8266TrueRandom.h"
#include "lua.h"
#include "lua_esp.h"
////////////////////////////////////////////////////////////////////////////////
// RESET THE ENTIRE MICROCONTROLLER
////////////////////////////////////////////////////////////////////////////////
static int esp_reset(lua_State *lua) {
ESP.reset();
return 0;
}
////////////////////////////////////////////////////////////////////////////////
// RESTART THE ENTIRE MICROCONTROLLER
////////////////////////////////////////////////////////////////////////////////
static int esp_restart(lua_State *lua) {
ESP.restart();
return 0;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE CURRENT NUMBER OF BYTES FREE IN THE HEAP (FREE RAM / MEMORY)
////////////////////////////////////////////////////////////////////////////////
static int esp_heap(lua_State *lua) {
lua_pushinteger(lua, ESP.getFreeHeap());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// PRINT TO THE SERIAL CONSOLE
////////////////////////////////////////////////////////////////////////////////
static int esp_print(lua_State *lua) {
const char *text = luaL_checkstring(lua, 1);
Serial.println(text ? text : "");
return 0;
}
////////////////////////////////////////////////////////////////////////////////
// PUSH A RANDOM NUMBER ONTO THE STACK
////////////////////////////////////////////////////////////////////////////////
static int esp_rand(lua_State *lua) {
lua_pushinteger(lua, ESP8266TrueRandom.rand());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// PUSH A RANDOM NUMBER ONTO THE STACK
////////////////////////////////////////////////////////////////////////////////
static int esp_random(lua_State *lua) {
switch (lua_gettop(lua)) {
case 0:
lua_pushinteger(lua, ESP8266TrueRandom.random());
break;
case 1:
lua_pushinteger(lua, ESP8266TrueRandom.random(
luaL_checkinteger(lua, 1)
));
break;
default:
lua_pushinteger(lua, ESP8266TrueRandom.random(
luaL_checkinteger(lua, 1),
luaL_checkinteger(lua, 2)
));
}
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// PUSH A RANDOM BIT ONTO THE STACK
////////////////////////////////////////////////////////////////////////////////
static int esp_bit(lua_State *lua) {
lua_pushboolean(lua, ESP8266TrueRandom.randomBit());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// PUSH A RANDOM BYTE ONTO THE STACK
////////////////////////////////////////////////////////////////////////////////
static int esp_byte(lua_State *lua) {
lua_pushinteger(lua, ESP8266TrueRandom.randomByte());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE INPUT VOLTAGE REFERENCE
////////////////////////////////////////////////////////////////////////////////
static int esp_vcc(lua_State *lua) {
lua_pushinteger(lua, ESP.getVcc());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE CHIP ID
////////////////////////////////////////////////////////////////////////////////
static int esp_id(lua_State *lua) {
lua_pushinteger(lua, ESP.getChipId());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE ESP SDK VERSION STRING
////////////////////////////////////////////////////////////////////////////////
static int esp_sdk(lua_State *lua) {
lua_pushstring(lua, ESP.getSdkVersion());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE CORE VERSION STRING
////////////////////////////////////////////////////////////////////////////////
static int esp_core(lua_State *lua) {
String ver = ESP.getCoreVersion();
lua_pushstring(lua, ver.c_str());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE CURRENT CPU CLOCK CYCLE COUNT
////////////////////////////////////////////////////////////////////////////////
static int esp_cycle(lua_State *lua) {
lua_pushinteger(lua, ESP.getCycleCount());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// GET THE CURRENT CPU CLOCK CYCLE COUNT
////////////////////////////////////////////////////////////////////////////////
static int esp_mhz(lua_State *lua) {
lua_pushinteger(lua, ESP.getCpuFreqMHz());
return 1;
}
////////////////////////////////////////////////////////////////////////////////
// REGISTER THE ESP LUA OBJECT
////////////////////////////////////////////////////////////////////////////////
void lua_esp_init(lua_State *lua) {
//ESP library (hardware functions)
static const struct luaL_Reg esp_lib[] = {
{"reset", esp_reset},
{"restart", esp_restart},
{"heap", esp_heap},
{"print", esp_print},
{"rand", esp_rand},
{"random", esp_random},
{"bit", esp_bit},
{"byte", esp_byte},
{"vcc", esp_vcc},
{"id", esp_id},
{"sdk", esp_sdk},
{"core", esp_core},
{"cycle", esp_cycle},
{"mhz", esp_mhz},
{NULL, NULL}
};
luaL_register(lua, "esp", esp_lib);
}