We have Problems using the neopixel library because of missing math functions.
As a workaround we have to add
// notwendige Funktionen für das aktuelle Neopixel-Paket
namespace Math {
export function idiv(x: number, y: number) { return x / y }
export function round(x: number) { return x }
}
So I think we need this two functions in makecode ? ;-)
We have Problems using the neopixel library because of missing math functions. As a workaround we have to add
// notwendige Funktionen für das aktuelle Neopixel-Paket namespace Math { export function idiv(x: number, y: number) { return x / y } export function round(x: number) { return x } }
So I think we need this two functions in makecode ? ;-)