pxt-common-packages 9.4.7 → 9.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/built/common-sim.d.ts +1 -0
- package/built/common-sim.js +3 -0
- package/libs/azureiot/built/debug/binary.js +461 -461
- package/libs/color/built/debug/binary.js +8 -8
- package/libs/esp32/built/debug/binary.js +305 -305
- package/libs/game/built/debug/binary.js +6682 -6682
- package/libs/matrix-keypad/built/debug/binary.js +8 -8
- package/libs/mqtt/built/debug/binary.js +176 -176
- package/libs/net/built/debug/binary.js +176 -176
- package/libs/net/controller.ts +4 -0
- package/libs/net-game/built/debug/binary.js +8271 -8271
- package/libs/palette/built/debug/binary.js +6681 -6681
- package/libs/radio/built/debug/binary.js +8 -8
- package/libs/radio-broadcast/built/debug/binary.js +8 -8
- package/libs/rotary-encoder/built/debug/binary.js +8 -8
- package/libs/sprite-scaling/built/debug/binary.js +6681 -6681
- package/libs/storyboard/built/debug/binary.js +6681 -6681
- package/libs/wifi---esp32/buildlogin.sh +1 -0
- package/libs/wifi---esp32/controller.ts +19 -1
- package/libs/wifi---esp32/enums.d.ts +2 -0
- package/libs/wifi---esp32/httpserver.cpp +166 -0
- package/libs/wifi---esp32/login.full.html +37 -0
- package/libs/wifi---esp32/login.html +1 -0
- package/libs/wifi---esp32/pxt.json +1 -0
- package/libs/wifi---esp32/shims.d.ts +4 -0
- package/libs/wifi---esp32/sim/wifisockets.ts +3 -0
- package/libs/wifi---esp32/wifi.cpp +13 -14
- package/libs/wifi---esp32/wifi.h +13 -1
- package/package.json +1 -1
package/built/common-sim.d.ts
CHANGED
|
@@ -1228,6 +1228,7 @@ declare namespace pxsim._wifi {
|
|
|
1228
1228
|
export function socketClose(fd: int32): int32;
|
|
1229
1229
|
export function eventID(): int32;
|
|
1230
1230
|
export function scanStart(): void;
|
|
1231
|
+
export function startLoginServer(): void;
|
|
1231
1232
|
export function scanResults(): RefBuffer;
|
|
1232
1233
|
export function connect(ssid: string, pass: string): int32;
|
|
1233
1234
|
export function disconnect(): int32;
|
package/built/common-sim.js
CHANGED
|
@@ -5052,6 +5052,9 @@ var pxsim;
|
|
|
5052
5052
|
_raiseEvent(1 /* ScanDone */);
|
|
5053
5053
|
}
|
|
5054
5054
|
_wifi.scanStart = scanStart;
|
|
5055
|
+
function startLoginServer() {
|
|
5056
|
+
}
|
|
5057
|
+
_wifi.startLoginServer = startLoginServer;
|
|
5055
5058
|
function scanResults() {
|
|
5056
5059
|
const b = new Uint8Array(7);
|
|
5057
5060
|
b[0] = -20; // rssi
|