savejeff

Results 50 comments of savejeff

same here. library seems to not maintained and not up to date. But I have found the fix here https://forum.pjrc.com/threads/66707-Teensy-4-1-deep-sleep-and-watchdog the last post is the solution. add the line `FLASHMEM`...

It seems the library is no longer maintained. if you want to fix the code yourself its pretty easy. go to "Snooze/src/hal/TEENSY_40/SnoozeDigital.cpp" and fix the defines at the beginning to:...

examples still do not work. console gives error: ``` Uncaught TypeError: g.getAttribute is not a function at MeshLine.setGeometry (THREE.MeshLine.js:81:26) at makeLine (main-graph.js:47:4) at createLines (main-graph.js:76:2) at init (main-graph.js:64:2) at main-graph.js:41:1...

Thx. would it be possible to update the Demos/Examples? They currently still do not work

no problem. just wanted to give something back to the open source community. I think making SQlite available to the Arduino community is a big thing. With the Filesystem abstraction,...

I have looked into this and its solvable: 1.) a temporary file is opened. this is not implemented currently -> filename is 0 and the doc says you have to...

i found out the problem with seek. sqlite expects that when a seek is above the file size and a write is started that the file is extended to the...

i think i have now fixed most of the problems that caused the IO Disk errors others reported. @siara-cc i can send you the my implementation. its based on arduinos...

I can recommend the alternative semi official Arduino pico core. It's IMHO a better rp2040 Arduino core. It builds on the pico sdk with good multi core support and optional...

then you will have to use the sdk directly. just use bare Visual studio code with c++ extension for intelisense. platformio is very rarely offering not arduino sdks and i...