Тёмный
Volos Projects
Volos Projects
Volos Projects
Подписаться
Hello! On this chanell You can find many Arduino and electronic projects. Under each video You can also find code and schematic. I hope that You will find something interestig for yourself . Fell free to subscribe ! Have a nice day!

Комментарии
@MaxCastles
@MaxCastles 23 часа назад
Exactly what I was looking for!
@ismzaxxon
@ismzaxxon День назад
set rx tx to function 3 in setup, then config for sd card. Here is a code snippet where i use the TX and RX pin on my ESP8266. Bear in mind, if data comes in on the RX pin, this is the same as detecting a push button. //GPIO 1 (TX) swap the pin to a GPIO. pinMode(1, FUNCTION_3); //GPIO 3 (RX) swap the pin to a GPIO. pinMode(3, FUNCTION_3); And to switch back //GPIO 1 (TX) swap the pin to a TX. pinMode(1, FUNCTION_0); //GPIO 3 (RX) swap the pin to a RX. pinMode(3, FUNCTION_0);
@MyTube4Utoo
@MyTube4Utoo 2 дня назад
Beauty has no purpose, but to be beautiful, and I think your electronic Rube Goldberg BLINK project is beautiful. 😆 Thank you.
@MyTube4Utoo
@MyTube4Utoo 2 дня назад
Very cool! Thanks for the video.
@thorstenwierschin1250
@thorstenwierschin1250 2 дня назад
How said that you have to be rich, to rule the galaxy?!
@ReapSow-b7s
@ReapSow-b7s 2 дня назад
Hello Sir : Greeting from Indonesia. I like your tutorial videos. regarding to this video, I want to ask how to make the gif file stored in SDCARD can be played and changeable by using push button ? so we can play more gif files, or change by Bluetooth from the cellphone ?
@mdeeen
@mdeeen 2 дня назад
how to program such beautiful graphics? it's hard to program display by code. or you have special graphical base software tools for the graphics vector / sketch programming.
@AdamVanHine
@AdamVanHine 2 дня назад
So clever! Great work
@IvanBilík-x2i
@IvanBilík-x2i 2 дня назад
Vše vyřešeno, stáhl jsem si knihovnu font.h , Sett.h a boldFont.h.
@marcelo329524
@marcelo329524 3 дня назад
Hi, Volos! Great video! Could you tell us where did you find the function _ui_label_set_property(ui_ssidLBL,_UI_LABEL_PROPERTY_TEXT,ssid.c_str()); since I just found the function _ui_label_set_property(lv_obj_t * target, int id, const char * val);? (I found in ui_helpers.h)
@amorpheuses1627
@amorpheuses1627 3 дня назад
Excellent! Bought one of these and your code works flawlessly. Now have to try it with 3RVX.
@amorpheuses1627
@amorpheuses1627 3 дня назад
Oh, umm, yes forgot to add: Thanks vey much for doing this video! Best Regards.
@IvanBilík-x2i
@IvanBilík-x2i 3 дня назад
In the Core2Only.ino code, after loading the code, it reports a font error. h, set.h a boldFont.h : No such file or directory. I don't know what the mistake is. Thank you for the pomc. Bilík
@IvanBilík-x2i
@IvanBilík-x2i 3 дня назад
Příjemný hlas, skvělý stojan a ještě skvělejší projekt. Dík
@edivollgas719
@edivollgas719 3 дня назад
No way you get rich and a new car this way ....... Bike speedo with temperature sensors project is much more promising 😊 ..........
@RCDUDEFPV
@RCDUDEFPV 3 дня назад
Thank you
@StefanoCiurleo
@StefanoCiurleo 3 дня назад
😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂
@guililuize585
@guililuize585 3 дня назад
Thank you!
@s_k_w4035
@s_k_w4035 4 дня назад
6:08 he realy exist in real life Yasuke 1579
@julien7196
@julien7196 4 дня назад
THAT'S GENIUS!
@MirkoPavleskiMK
@MirkoPavleskiMK 4 дня назад
Great video, I wish you to reach 100k subs as soon as possible
@VolosProjects
@VolosProjects 3 дня назад
Thank you, i hope it will be this year.
@larrygzone
@larrygzone 4 дня назад
Another great tutorial, thanks Volos. General question: I notice that in most, if not all, tutorials that you use generic ESP32S3 board selection in the Arduino IDE. You do not select Lilygo board in the board setup. I work with Lilygo, M5Stack, and other ESP32 boards. Is it best to always use the generic Espressif ESP32S3 board selection in Arduino IDE? Thanks - Larry
@VolosProjects
@VolosProjects 4 дня назад
Hello, Larry i chose esp32 s3 only when using new lilygo boards, that is not case with m5stack and older lilygo. Thank you for your support.
@JonathanDeWitt1988
@JonathanDeWitt1988 4 дня назад
I like your sense of humor. You did pronounce the instrument's name right (not going to attempt to spell it). Have a great summer.
@hypnoticatrance
@hypnoticatrance 4 дня назад
Cool stuff, I like your Video Tutorials, and they help me much to get run things I don't had a clue about. My main problem was to get run my new display with tft eSPI, about there was not much Info around how to do with my display. But I find out how, and got it running. Since then i can play around with your nice tutorials! The Idea to use eSPI i got in your videos, and it made my display much faster, as the original library does from my display.
@symyontech1997
@symyontech1997 4 дня назад
First of all, thank you @VolosProjects for the shared project code. For those not able to run this.First check the linked API library, they moved and I think the links needs to be updated. And the second part is that the results from the API gets converted to a char array, that array is declared in the loop() and it creates an overflow that makes the board constantly restart. In short give it a constant length lets say 15000 and declare it static like so: static char inp[15000]; instead of the : char inp[payload.length()]; <- this is the problem
@brendanfurlong7868
@brendanfurlong7868 4 дня назад
Seems The ESP32 3.x.x core deletes the ledcSetup and ledcAttachPin commands .Has anyone any idea how to get this working on the new update ..please ..driving me nuts 😞
@VolosProjects
@VolosProjects 4 дня назад
@@brendanfurlong7868 i still dont use esp32 3.0, becouse this and many more isues , just diwngrade your board definitions to 2.17
@WhisperWinds-jh8hj
@WhisperWinds-jh8hj 5 дней назад
Awesome !!
@GerdKnops
@GerdKnops 5 дней назад
BTW LVGL and SquareLine Studio have parted ways. But EEZ Studio appears highly regarded and is free.
@demon39063
@demon39063 5 дней назад
I want to buy the AMOLE screen directly without an ESP connected to it. struggling to find something similar
@VolosProjects
@VolosProjects 5 дней назад
If you find it you will have lots of problem programing it. You will maybe need to write your own driver
@demon39063
@demon39063 5 дней назад
@@VolosProjects yeah I know 🙂 -- I have done this many times, I worked as a firmware engineer for about 10 years
@demon39063
@demon39063 5 дней назад
@@VolosProjects writing it in Rust is the main fun part for me 😀
@VolosProjects
@VolosProjects 5 дней назад
@demon39063 then you know what you are doing, try to contact NickTheFix , he found few amoleds on aliexp
@demon39063
@demon39063 5 дней назад
@@VolosProjects thank you so much!
@maylon1399
@maylon1399 5 дней назад
I can make an automatic trigger to put on my airsoft
@kristemmerman921
@kristemmerman921 5 дней назад
Volos I just discovered you, and my man you know your sh*t! Thank you for all your videos!
@VolosProjects
@VolosProjects 5 дней назад
@@kristemmerman921 tnx man, glad you are here.
@teebeeonline
@teebeeonline 5 дней назад
that's clever, you use a relay for a tick sound.
@AX-fx7ng
@AX-fx7ng 5 дней назад
Which brand models of AirCon? Fan?
@Yakroo108
@Yakroo108 6 дней назад
👍👍👍
@kennethbeal
@kennethbeal 6 дней назад
That's awesome! I love the dual noise of the clicking, so you can hear where the first beat is. I knew someone many years ago who made his own loop pedal device. Bet a ukelele-mounted one would be possible, these days! Still might want it foot-controlled though, to not interrupt the playing. Have fun on your vacation, look forward to seeing you again!
@VolosProjects
@VolosProjects 6 дней назад
Tnx Ken, i tried loop pedal once. Fun thing to play with.
@harrymagooslum5770
@harrymagooslum5770 6 дней назад
Hawaii is a Croatian territory and they pronounce each letter just as in Croatian. Seriously, they do (too)! So it’s “Ew Ku Le Le”. Love your videos ❤ btw! This one was special.
@VolosProjects
@VolosProjects 6 дней назад
@@harrymagooslum5770 thank you harry 😀
@jfseaman1
@jfseaman1 6 дней назад
Yes, you are pronouncing it correctly.
@alfredoramirez8336
@alfredoramirez8336 6 дней назад
But you add some "include lines at the beginning of the exported file, such as lilyGO_AMOLED.h and some others by example the BL_ON for the backligjt is the screen, the ttgo.begin() and where did you configure the pins for the display from sqareline studio...?
@VolosProjects
@VolosProjects 6 дней назад
evrything is installed by instaling AMOLED series board, thats why i am using this board, becouse it is easies to setup and use with sqareline. you dont need to define any pins, long time ago we needed to do that, but with new board you just install new filles and libraries.
@alfredoramirez8336
@alfredoramirez8336 6 дней назад
Can I send you a Lily Pi to use with the tutorials, that board is little ugly but is complete with SD card, RTC, relay output, 2I2C ports battery so please take a look. The hardware is very supported by ttgo and community and libraries are very completed... It also works for T-watch, is the same hardware... Ah I forgot to tell you 480x320 resolution..
@jamesbucsis6296
@jamesbucsis6296 7 дней назад
Garbage
@teacupanimates
@teacupanimates 6 дней назад
volos please give this guy the pin of shame
@Fusiiiiion
@Fusiiiiion 7 дней назад
👎
@kopiller
@kopiller 7 дней назад
I love the relays as a sound source :D
@hachogonzalez8649
@hachogonzalez8649 7 дней назад
Coolest make ever
@dcmotive
@dcmotive 7 дней назад
Nice work. I can get the adafruit_gfx with this similar display too, but lvgl just wont play nice with it. Not sure why. If you can let us know.
@PauloPompeu
@PauloPompeu 7 дней назад
Ukulele self awareness 😂
@dannykheylik6631
@dannykheylik6631 7 дней назад
Great video! But Ive faced a problem that my numbers overlap one on top of each other. As I saw in your video, u didn’t “refresh” the screen. (I use TFT on IL9341 (240x320), if it matters) Any suggestions on that?
@rickharms1
@rickharms1 7 дней назад
The &(ampersand) is a C (C++) pointer to memory, I get that. However the line "back.pushSprite(0,0);" has me confused. I would have thought the coordinates would be more around the pivot. ?? Also, I am trying to find any documentation of all the TFT-SPI functions. The Bodmer github has some (kind'a) in the .h files, but appears not complete and confusing. For example, where did you learn about drawWedgeLine? I know you are smart, but you do not pull things out of ........ I will say thin air. Thank you.
@Georgesanderson1965
@Georgesanderson1965 7 дней назад
Nice feature!
@sulcusulnaris
@sulcusulnaris 7 дней назад
Creative use of relays. 😀
@johnny14794
@johnny14794 7 дней назад
That is so cool!!! Wow!!!
@rdyer8764
@rdyer8764 7 дней назад
Ukulele is a Hawaiian word. I believe that it is properly pronounced ooh-koo-lay-lay as Hawaiian does not have a "You" sounding vowel. The first two vowels and the last two vowels should be pronounced the same as each other.