This level of concision is unbelievable. All the info is clear and lucid, no time wasted, no ambiguity or possibility for misconstruction. it's productions like this that make the world a good place. :)
@BestUnderPressure6 жыл бұрын
I have had issues understanding arrays ever since I first learned of them. This video cleared it up. Thanks.
@fabiocardoso_dev_br4 жыл бұрын
Really clear and bright explanation, thank you.
@mohammadsalama2662 Жыл бұрын
bro your the goat of arduino, thank you so much
@loganjamesion10104 жыл бұрын
Cheers man, find all your videos very help.
@aman_gupta98554 жыл бұрын
Thank u such a good explanation
@Core-Electronics4 жыл бұрын
You're most welcome - we aim to help makers learn new skills
@veryverymetta7 жыл бұрын
This was great, thanks for your videos!
@SebastianHernandez-xz5ck4 жыл бұрын
Pretty awesome tutorial thanks !
@userou-ig1ze4 жыл бұрын
surprisingly good video, thanks
@1828fernando6 жыл бұрын
I know what you are explainig, but manipulation port is better. Good video, keep on teaching us.
@SHOHRUX_GAMING3 жыл бұрын
👍👍👍👍👍👍
@sumedhburbure41737 жыл бұрын
Thank you. This was very helpful :)
@michak92654 жыл бұрын
Thanks. I only didn't get one thing. You're initialising ledArray as an outputs at 8:05 : for (int i, i < 10, i++) Shouldn't it be like i
@Core-Electronics4 жыл бұрын
Good question Michał. If its possible, try posting this question in the Arduino section of our forum? One of our support staff or members of our makers community may know the reason why it was coded in this manner. forum.core-electronics.com.au/
@marwanal-yoonus2805 жыл бұрын
Thank you for illustrations. I hope that you do the best. Iraq/Mosul
@kisetsujo2513 жыл бұрын
Loved the video. It was very easy to understand however i have a slight problem mate. I copied your code and it said "invalid pure specifier (only" = 0" is allowed) before numeric constant" in the first line where it is int ledArray.
@MeEncantaKiley Жыл бұрын
Can you read a sensor into an array?
@men8105 жыл бұрын
Sehr gut Mach bitte weiter
@MrSirPain3 жыл бұрын
Is it possible to make array elements are struct.
@KPOP-un4vb6 жыл бұрын
This is so good! Thank you!
@slimecat_lol Жыл бұрын
you are amazing
@tomsothertube7 жыл бұрын
The FOR loop in setup is incorrect, it should be for(int i; i
@kamalkhatri33225 жыл бұрын
i was thinking same too
@williamgantt24704 жыл бұрын
I’m trying to understand why he put the resistors on the ground side of the LEDs. Is that a mistake?
@Motorman2112 Жыл бұрын
@@williamgantt2470 No, it works the same way.
@royalm80774 жыл бұрын
"It could be called Sydney", ahh don't we all love a little bit of nationalism in our everyday works lmao. Love your videos btw
@kapoioskapoiou8631 Жыл бұрын
4:11 how to declare arrays
@xz865 жыл бұрын
thanks for the video. it help me understand array better. however I have one question. I saw a array function with 2 index. something like arrayOne[7][3]; how do you access the second index?
@iank26154 жыл бұрын
That's a matrix. The first number is rows, the second is columns.
@leonvonmoltke79234 жыл бұрын
why is there no index out of bounds error in the void setup?
@Core-Electronics4 жыл бұрын
Intriguing question - if you can post it on our forum, we have support staff that are great with coding issues. forum.core-electronics.com.au/
@leonvonmoltke79234 жыл бұрын
@@Core-Electronics Thanks I will
@EnergySeeker3 жыл бұрын
am using 2 multpilxer can i use 2 arrays but excuted in the same exact time ?
@senpuuxd1032 Жыл бұрын
how to change part of 2 dimensional array. i doing airsoft project that count point by scanning rfid tag but i don't understand how to remove tag id from array after was scaning and adding point and after next try scan that same tag it will be no more in array (i am green in arduino that is beyond me understanding)
@ComandanteJ6 жыл бұрын
I'm trying to return an integer array (with RGB values) from a function, I tried to do it directly as I would do in Java but it gave me the finger.
@kirankumar-re4yg7 жыл бұрын
Sir can you please explain the concept of timer and interrrupts
@Gintrius7 жыл бұрын
I think first array is incorrect - array index starts from 0 not 1 so it shoud be 3 not 4
@xanh3506 жыл бұрын
you are correct, he either should put there [3] or keep it as [4[ but then add another element into his array curly bracket.
@stevebrockway4595 жыл бұрын
Yes, the index starts at 0, but the declaration is how many elements are in the array. Then a number is used to index the array. Int ArrayOne[4] has four elements accessed ArrayOne[0] to ArrayOne[3].
@MuhammadBilal-eb6fh5 жыл бұрын
there is giving an error on first line of code...i tried as you explained but everything halt
@ridharemix42596 жыл бұрын
how to split String to array with delimiter?, example: my string "12,34,22" delimiter "," output i need like: arr[12,34,22] access using arr[i] sorry my english is bad i have you understand my question thanks..
@bo9385 жыл бұрын
Hi i tried to run the code on my arduino board Led blinks only one time it doesn't repeat High and Low again and again int ledArray[] = {3,4,5,6,7,8}; void setup() { for(int i; i
@iank26154 жыл бұрын
Your first loop is just switching the LED on five times, and the second is switching it off five times. So you are just switching it on and then off. The HIGH and LOW commands need to be in the same loop. Try: void loop () { for (int i; i
@DaCrazyPenguin3 жыл бұрын
Great video, but how do you activate all the pins at once, using the array?
@ibrahimhamid74433 жыл бұрын
tuj se nahi ho pae ga nikal yaha se
@Randommusingsvideos6 жыл бұрын
Could you use the text array to display common text on an LCD. For example, if you had a LCD with say 10 display pages, but the top line of the LCD contained a heading - "SENSOR VALUES", rather than writing "lcd.print(F("SENSOR VALUES")); 10 times for each display page could you just declare this in the top of the program as: char arrayHeading[14] = ("SENSOR VALUES"); and then when writing the code for each LCD display page simply call: lcd.print(arrayHeading); I am interested to find out opinions on this since, using: lcd.print("SENSOR VALUES");
@kirankumar-re4yg7 жыл бұрын
super
@d-13816 жыл бұрын
Code doesn't work :/
@williamgantt24704 жыл бұрын
I don’t understand why he wired the resistors to ground instead of to the pins. Wouldn’t that limit the current after it had already passed through the leds?
@Core-Electronics4 жыл бұрын
That's a great question - if you post that on our forum, someone in our team ought able to answer that and many others. coreelec.io/forum
@ThuanDuong-pv3xu6 жыл бұрын
to : Core Electronics ; How to send an array ( data) between 2 RF24l01 _ardruino modules ? thank
I basically did the same thing with my having different ports and having 3 pins in my array. My set up is good since it was working perfectly with several other programs. Yet it doesn't work with this program. I have no errors when uploading either. Where have i gone wrong since my lights do not turn on at all. int ledArray[] = {7,8,9,}; int delayTime = 250; void setup() { for (int i; i
@m.v.89766 жыл бұрын
Try digitalWrite(ledArray[i], HIGH);
@alternative01-pd3iu7 ай бұрын
imagine you can just int a = digitalWrite a(led, HIGH);
@chandanaelectronics7824 жыл бұрын
hello friend, how are you. i'm chandana from sri lanka. can you help me for arduino. plese send your email and other contact. thank you