toit icon indicating copy to clipboard operation
toit copied to clipboard

Program your microcontrollers in a fast and robust high-level language.

Results 148 toit issues
Sort by recently updated
recently updated
newest added

After creating a symbolic link that points to "../foo.txt", Toit can't read that file anymore. Replacing the '/' with '\' is enough to make it work. Powershell and bash correctly...

``` foo_int -> int?: return 499 foo_string -> string?: return "hello" main: while x := foo_int: x = foo_string while x/any := foo_int: x = foo_string ``` In the first...

Hi, Is there any espnow tutorials for esp32c3 chip ? Thank you

``` main: foo := non_nullable while foo: foo = nullable non_nullable -> int: return 1 nullable -> int?: return null ``` This runs, and doesn't catch the place where we...