Louis van Geldrop

Results 30 comments of Louis van Geldrop

BTW: if one enters a special character e.g. "?" in the filter field it returns: Something went wrong. Please reload the page.

I have also used the vscode extension, but then only the url: localhost:8081/connect is supported. It will not find e.g. 192.168.0.126:8081/connect

Used command: devs devtools src/main.ts --internet -s

Now I can open url: 192.168.0.126:8081/connect, but the "Connect" button is missing

At my chromebook Chrome. At my latop Edge. Error in the browser development window: Unrecognized feature: 'vr'. about:blank:1 An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute...

With Chromebook Chrome browser I do get after starting devs devtools ....... the error: microsoft.github.io/jacdac-docs/tools/devicescript-connect/?dark=1&devtools=ws%3A%2F%2F192.168.0.126%3A8081%2F#0.5838419806994697:74 Mixed Content: The page at 'https://microsoft.github.io/jacdac-docs/tools/devicescript-connect/?dark=1&devtools=ws%3A%2F%2F192.168.0.126%3A8081%2F#0.5838419806994697' was loaded over HTTPS, but requested an insecure font...

Personally I am using the DHT22, since it is a little bit better in accuracy than the dht11. I have written for Moddable a driver for the DHT11/22 using the...

I have used the following class in Makecode/STS ```ts class DHT11 { constructor(public pin: DigitalPin) { } public setTimeout(callBack: Function, time: number) { control.runInParallel(function () { // console.log("pause voor") pause(time);...

```ts // https://www.mouser.com/datasheet/2/758/DHT11-Technical-Data-Sheet-Translated-Version-1143054.pdf import * as ds from "@devicescript/core" import { pinMode, digitalWrite, subscribeDigital } from "@devicescript/gpio/src" import { uptime } from "@devicescript/runtime/src" type ARHT = { raw: string, absHumidity:...

The above DHT is just a sample, which will not work. With setWatch as a replacement for subscribeDigital+upTime I assume it will work.