Path: csiph.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: rbowman Newsgroups: comp.os.linux.misc Subject: Re: Memory Safety (Re: Python: A Little Trick For Every Need) Date: 11 Feb 2026 06:57:39 GMT Lines: 26 Message-ID: References: <9hlumk1lodkjlm9a6egbo2fa79f85v6mad@4ax.com> <10lqdk2$n03u$1@dont-email.me> <10lrt1t$16vf1$1@dont-email.me> <-EOdnRUZmNTqQx_0nZ2dnZfqn_qdnZ2d@giganews.com> <10m28je$38cir$3@dont-email.me> <10m2bqs$39oes$1@dont-email.me> <10m2qvk$3g6mr$1@dont-email.me> <10m4go5$2gva$3@dont-email.me> <10m7b6c$10ebk$7@dont-email.me> <20260209100449.0000348a@gmail.com> <20260210080035.000048d0@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: individual.net QqYIEeKeJQlfquds8IgDAAMuxIvsC3VylVGDdmkvNyeRj5Atw6 Cancel-Lock: sha1:avPZDJLK6y7kukieOPuYTh0nTn4= sha256:1CzB2QExg+fzAEFfo4zG4A0AH+MUTOJciFpdQ0AOkhU= User-Agent: Pan/0.162 (Pokrosvk) Xref: csiph.com comp.os.linux.misc:81933 On Tue, 10 Feb 2026 23:02:15 -0500, c186282 wrote: > I just bought a Pico2w "starter kit". Dunno if I really NEED a Pico > for anything but it does look to be good cool tech so I'm gonna put > in the effort. Ards are also good, have used them for many things and > the IDE really makes stuff easier, > but they're not as zippy as a Pico and adding wi-fi, or even wired > networking, do NOT expect any useful speed. If you haven't found them yet... https://pip-assets.raspberrypi.com/categories/610-raspberry-pi-pico/ documents/RP-008276-DS-1-getting-started-with-pico.pdf? https://pip-assets.raspberrypi.com/categories/609-microcontroller-boards/ documents/RP-009085-KB-1-raspberry-pi-pico-c-sdk.pdf The first one describes setting up VS Code and the Pico extension. The second gets into more detail. Beware the DHT-11 in the appendix. If you want a temperature/humidity sensor get the DHT-20. The DHT-11 requires very time sensitive bit-banging and the DHT-20 is I2C. The Arduino and MicroPython DHT-11 libraries work, the Pico C/C++ example code not so much. I finally did find something that worked on github. www.toptechboy.com has some decent videos. He digs into how the sensors work and the math behind it rather than copypasta.