Kasper Lund
Kasper Lund
Thank you for working on this. It is our intention to use websockets like you do here to make it possible to get logs and stack traces via the network...
Thanks, @lutzbickhardt! This is a good idea. The WiFi credentials are stored in the flashed image using ubjson, so it should be possible to extend this with more keys and...
@lutzbickhardt: Looks like you might need to run `toit.pkg install` in `/home/lutz/jaguar` to fetch dependencies.
@lutzbickhardt The wrapper is written in Toit and it isn't much code. Here is where we get an http request to install a new program: https://github.com/toitlang/jaguar/blob/main/src/jaguar.toit#L84.
Cool stuff, @lutzbickhardt! I think the code you have for reading the config file (https://github.com/toitlang/jaguar/blob/main/src/jaguar.toit#L32) should also work from an application, so if the serial number is stored in the...
Starting with Jaguar v1.5.2, this is now possible using: ``` sh jag run -D my.value=42 examples/hello.toit ``` or for installed containers: ``` jag container install -D broker.host=test.mosquitto.org mqtt-service examples/mqtt.toit ```...
Maybe it actually makes even more sense now that we can install containers with services? We could do: ``` sh jag container install https://github.com/toitlang/pkg-service-foo ``` and add something to the...
So it times out trying to get an IP address using DHCP. Does rebooting the device help at all? Does it continue to fail for longer periods of time? There...
Hi @kaxori! Did you make any progress on this? We just released new versions of Toit and Jaguar (v2.0.0-alpha.14 and v1.4.1 respectively) and I can tell from your traces that...
You might be able to benefit from the `print_objects` helper to figure out if your memory usage keeps growing. ``` main: iteration := 0 while true: print_objects "iteration=$(iteration++)" sleep --ms=1_000...