Тёмный
No video :(

Saving Data Inside the PICO 

Making Stuff with Chris DeHut
Подписаться 10 тыс.
Просмотров 8 тыс.
50% 1

Опубликовано:

 

5 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 28   
@dannyboland1363
@dannyboland1363 Год назад
Great video Chris. Simple explanations and examples. Using this in my project now. Many thanks.
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Glad you found the video beneficial! Thanks for the feedback, much appreciated!
@oosmanbeekawoo
@oosmanbeekawoo Год назад
Dude has really cool lighting and is gorgeous as heck! Yes, this was the final video that made me take the Pico for my project! In fact, I read you can also extend this storage capacity by 16MiB using W25Q128! I intend to use the Pico for a home-made camera with just under 1,000 pixels. Should have enough memory for many pictures!
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Hi @oosmanbeekawoo , Sounds like you are on your way to having some serious fun with a PICO!!!! Let us know how it works out. Cheers! Chris
@dpratte
@dpratte Год назад
Excellent job, sir! I just ran across you and this video. Thank you!
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Hi Dan, Thank you very much for the kind words, very much appreciated! Cheers! Chris
@tomaszgrubski9137
@tomaszgrubski9137 2 года назад
I have recently been in the process of creating my own bicycle counter. Your videos ( especially the one with the break function and swich bounce elimination) are very helpful to me and I would like to thank you for them! If only I could suggest an idea for a new episode I would love to see something on deep sleep mode and other energy saving options ( waking up from deep sleep etc. ect . ). :DDD
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut 2 года назад
Hi Tomasz! Thanks for kind words and sharing your suggestion! As I have not done much in the form of battery powered projects, I never really gave that idea much thought. I will certainly look into doing some content on that. Filming and production will start up again in the fall and I will see what I can do you for. Thanks again for being a part of this community. Cheers!
@gadgeting6039
@gadgeting6039 Год назад
Thanks!
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Hello Gadgeting, Thank you very much!!!! Cheers Chris
@robertorusso3192
@robertorusso3192 Год назад
Gorgeus lesson! Thanks! Did you made a similar tutorial for Rp2040 on arduino? I need to save some variables when closing my program and to recall them at startup
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Hi Roberto, Unfortunately I am not doing anything for the Arduino. That has been out so long that there are too many videos already for it. Sorry, Chris
@ciocicalinmihai
@ciocicalinmihai Год назад
Greate video thanks
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
You are very welcome Calin, thanks for watching!
@_emanmodnar
@_emanmodnar Год назад
I guess this could be used to store settings (in json format) and receive it? Or would there be better ways to do “localStorage”/database on the pico?
@_emanmodnar
@_emanmodnar Год назад
Like using SQLite..?
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
That is a great question, unfortunately I don't have the answer. Hopefully one of the viewers can shed some light on that idea. Cheers! Chris
@larryb6759
@larryb6759 4 месяца назад
what about apending to the file at a later time>
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut 4 месяца назад
Hi Larry, That is a darn good question and unfortunately I don't have the answer. Hopefully I will be getting caught up on production and revisit that topic with a video update. Chris
@spacewhat8877
@spacewhat8877 Месяц назад
Maybe you could read from the file and save the data in a variable(old data), then write to the file with your old data variable and whatever new data you want to store.
@Hoette141
@Hoette141 28 дней назад
Appending data to a file is quite easy. You just have to open the file with parameter 'a' (for append) instead of 'w' (write) and don't forget ' ' to insert a line break: data_file = open("MyData.txt", "a") data_file.write(" Appended Line") data_file.close()
@TOMTOM-nh3nl
@TOMTOM-nh3nl Год назад
Thank YOu
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
You are welcome! Cheers! Chris
@ahmedkamel90
@ahmedkamel90 Год назад
Thank you for the video! Is there any way to read files using VScode C/C++ with Pico? I have been working on this project where I make the pico read a CSV file and compares data. If true LED is On. Been weeks cant find any solution for this.
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Hi Ahmed, Sorry, but I have not explored the PICO with C/C++ yet.
@TheDutchisGaming
@TheDutchisGaming Год назад
I myself have been trying to find a video about this myself too. But couldn’t really find any. There is however some documentation on the raspberry pi pico examples repo on GitHub.
@rudy_kolibri
@rudy_kolibri Год назад
hi, if i try this my raspberry pi pico wont allow this, becuse it tells me it is read only filesystem
@MakingStuffwithChrisDeHut
@MakingStuffwithChrisDeHut Год назад
Hmmm, that is not something I have experienced - perhaps a google search on that might help. Sorry I couldn't be more help, Chris