U explained it in a very straightforward & clear way. Life SAVER!
@gabrielfoligno4 жыл бұрын
Very good tutorial
@annnnnnn56284 жыл бұрын
This is super helpful Thank you!
@parkoregon4 жыл бұрын
Happy to help!
@brookewilliams38644 жыл бұрын
best tutorial I have seen!
@parkoregon4 жыл бұрын
Too kind!
@AdalsMusic3 жыл бұрын
Great tutorial, it has helped me a lot!
@ЕвгенийКонобицкий Жыл бұрын
Good afternoon, my name is Eugene. I am learning arduino on my own and want to transmit data from my heating boiler temperature sensor and outdoor temperature sensor, all of them are controlled by arduino. You can make a video on how to receive data from 64 bits of the address of the temperature sensor into processing via serial port You have good lessons, everything is clear, THANK YOU.
@AirconL_Official4 жыл бұрын
Thanks for your great tutorial
@parkoregon4 жыл бұрын
Happy to help!
@ramtanumukherjee1557 ай бұрын
How to load data continuously from a CSV file?
@remmo1238 жыл бұрын
thank you
@carlosgl99613 жыл бұрын
great tutorial!!
@tc9k9094 жыл бұрын
If I wanted to display only one name at a time from the csv file instead of a whole list, and have the next name pop up when I press a button, how might I achieve that?
@parkoregon4 жыл бұрын
Getting a text box to pop up when your mouse is pressed down is reasonably easy: if(mousePressed) text("Some Text Here", 300,300); Getting a single value from the table isn't too bad either. Remember that there are many entries in the table, so to display one you need to have a number. I suggest creating a new integer as a global variable above void setup(). Something like: int showVal = 0; Then, each time you click, you can grow showVal by one (showVal++). Then you can use "showVal" inside of your call to pull data out of the table.
@tc9k9094 жыл бұрын
@@parkoregon Thank you for responding. really appreciate it. It worked perfectly :)