Geoffrey Bosdet
Geoffrey Bosdet
  • 172
  • 34 122
Strings Practice Test Explanation
Strings Practice Test Explanation
zhlédnutí: 16

Video

Strings 2 Extravaganza
zhlédnutí 22Před 3 měsíci
I go over several Java Strings questions involving loops or the indexOf/lastIndexOf/contains String methods that internally use loops
Circuits Example Questions 1
zhlédnutí 59Před 3 měsíci
How to solve circuits questions with resistors
Java String Basics
zhlédnutí 32Před 4 měsíci
Java String Basics
CCC 2018 J5 Choose your own Path
zhlédnutí 22Před 5 měsíci
I go over how to solve this problem using BFS. It is a little messy but I hope it is helpful
2023 CCC Junior Word Hunt
zhlédnutí 63Před 5 měsíci
This is a video on how to solve the question using Java
Energy Extending Problem
zhlédnutí 25Před 5 měsíci
Energy Extending Problem
Energy Review
zhlédnutí 64Před 5 měsíci
I go over the majority of the questions in the Energy Review package
2D Forces Practice Package Fun 2
zhlédnutí 58Před 7 měsíci
Going over more 2D force problems in the practice package
2D Forces Practice Package Fun
zhlédnutí 54Před 7 měsíci
Going over the review package questions for your studying enjoyment
Practice Forces Test Solutions
zhlédnutí 75Před 7 měsíci
Practice Forces Test Solutions
Vertical Circular Motion
zhlédnutí 29Před 8 měsíci
Vertical Circular Motion
Uniform Circular Motion
zhlédnutí 43Před 8 měsíci
Uniform Circular Motion
2D Kinematics Harder Problems
zhlédnutí 72Před 8 měsíci
2D Kinematics Harder Problems
2D Kinematics Common Questions
zhlédnutí 45Před 8 měsíci
2D Kinematics Common Questions
2D Forces Forces at an Angle and Misc
zhlédnutí 43Před 8 měsíci
2D Forces Forces at an Angle and Misc
2D Forces Harder Atwood Machines
zhlédnutí 31Před 9 měsíci
2D Forces Harder Atwood Machines
2D Forces Easy Atwood Machines
zhlédnutí 39Před 9 měsíci
2D Forces Easy Atwood Machines
2D Forces Inclined Planes
zhlédnutí 55Před 9 měsíci
2D Forces Inclined Planes
Kinematics Adding Vectors using the Sine and Cosine Laws
zhlédnutí 31Před 9 měsíci
Kinematics Adding Vectors using the Sine and Cosine Laws
Kinematics Adding Vectors using Components
zhlédnutí 37Před 9 měsíci
Kinematics Adding Vectors using Components
Kinematics Breaking Vectors into Components
zhlédnutí 53Před 9 měsíci
Kinematics Breaking Vectors into Components
Kinematics Simple Adding Vectors
zhlédnutí 28Před 9 měsíci
Kinematics Simple Adding Vectors
Physics 11 Kinematics Theory
zhlédnutí 53Před 9 měsíci
Physics 11 Kinematics Theory
Physics 11 Kinematics examples
zhlédnutí 32Před 9 měsíci
Physics 11 Kinematics examples
Physics 11 Kinematics Graph Questions
zhlédnutí 30Před 9 měsíci
Physics 11 Kinematics Graph Questions
Equilibrium Standard Torque Balance Example
zhlédnutí 28Před 9 měsíci
Equilibrium Standard Torque Balance Example
Equilibrium - sine law example
zhlédnutí 30Před 9 měsíci
Equilibrium - sine law example
Last Fixes
zhlédnutí 48Před rokem
Last Fixes
Level up
zhlédnutí 22Před rokem
Level up

Komentáře

  • @4kagri208
    @4kagri208 Před 5 dny

    Is it possible to duplicate the lcd with another lcd so that you have 2 lcd’s displaying the same text, if so how would you go abouts doing this?

  • @laxmangordon4209
    @laxmangordon4209 Před měsícem

    This was very helpful! Thank you!

  • @reubenhaitsma2522
    @reubenhaitsma2522 Před rokem

    thank you! i used this to go from joystick to servo and it works great! clear simple explanation, well done👏👏👏

  • @lakshanchamod1208
    @lakshanchamod1208 Před rokem

    Thanks ❤

  • @bodhicoleman2408
    @bodhicoleman2408 Před rokem

    Legendary Content

  • @cilakos7834
    @cilakos7834 Před rokem

    Well explained. Please can you do an explanation of st7565 spi pinout

  • @theblindspot985
    @theblindspot985 Před 2 lety

    I was advised not to connect the servo to the 5V pin of the Arduino because it is only rated for a max output of 40mA but the stall current of the servo I am using is much higher than that. I am a complete novice when it comes to electrical circuits. There is also a forum on the Arduino website that advises using a 7V supply for the Arduino. I am using a AC to DC power supply for the Arduino and a 5V DC battery supply for the servo. Should I still be using capacitors to 'clean' up the signals? Any advice would be really helpful.

    • @gbosdet1
      @gbosdet1 Před 2 lety

      Capacitors probably aren't a bad idea but since your arduino is running off a separate power supply and the biggest reason for having the capacitors is to stop the arduino from behaving erratically when drawing too much from its power, I think you could skip them if you want and still have it work fine.

  • @roymills415
    @roymills415 Před 2 lety

    Great explanation thanks, trying to solve a jittering servo problem this might help.

  • @Jose-fg4qq
    @Jose-fg4qq Před 3 lety

    how to generate 1 number from a range of 1 to 500?

    • @gbosdet1
      @gbosdet1 Před 3 lety

      int num = random(1, 501);

  • @pallme100
    @pallme100 Před 3 lety

    Thank you very much for this informative video. I've got one thing that confuses me a bit. So I get, that the library recognizes which mode you're using based on the numbers and asignes them to private variables in the init() function, however, when I declare the numbers I do not declare d0-3, but d4-7 and this is also how I connect the display and it works fine. I was wondering why it works and where it actually asignes the pins to the right data input pins.

    • @gbosdet1
      @gbosdet1 Před 3 lety

      Check out the description of the constructor, particularly at the bottom: www.arduino.cc/en/Reference/LiquidCrystalConstructor

    • @pallme100
      @pallme100 Před 3 lety

      @@gbosdet1 Thanks for your quick answer :) The only constructor I could find with 6 inputs is the following: LiquidCrystal(uint8_t rs, uint8_t enable, uint8_t d0, uint8_t d1, uint8_t d2, uint8_t d3); ( github.com/arduino-libraries/LiquidCrystal/blob/master/src/LiquidCrystal.h ) This is also forwarded to the init() with init(1, rs, 255, enable, d0, d1, d2, d3, 0, 0, 0, 0) setting d4-7 to 0 if I get it right. (line 50 in the cpp github.com/arduino-libraries/LiquidCrystal/blob/master/src/LiquidCrystal.cpp ) So I would assume, that only data pins 0-3 are used. When using the lcd however, I do it like described in the link you've kindly attached and it works fine, I just cant find where the library actually links the input values to d4-d7. I think there is something I'm missing :/ Thank you very much for your help!

    • @gbosdet1
      @gbosdet1 Před 3 lety

      I think they are just variable names in the program and when the hardware is set to 4 bit mode it is looking for the data to just be connected to LCD pins 4-7

    • @pallme100
      @pallme100 Před 3 lety

      @@gbosdet1 Ah ok so it's just inconsistensy in the labeling. Thanks a lot for your help :)

    • @gbosdet1
      @gbosdet1 Před 3 lety

      @@pallme100 That is my guess anyway. No problem!

  • @TheKingMJackson
    @TheKingMJackson Před 3 lety

    Mate whys your camera 2fps

  • @zeinaabutair5634
    @zeinaabutair5634 Před 3 lety

    very helpful thank u

  • @dalton11231
    @dalton11231 Před 4 lety

    Why would you just put the capacitor in the rail/ bus

    • @gbosdet1
      @gbosdet1 Před 4 lety

      I was using it as a decoupling capacitor for the motor driver chip as the way I control motor speed is through turning the chip on and off at 490 or 980 Hz depending on which pins you are using to analogWrite to the enable pin of the L298D chip. I was worried that that kind of periodic significant power draw could turn the voltage at the Vin pin of the Arduino to sort of a square wave and that might cause the arduino to behave unpredictably so I threw in the capacitor to smooth out the main battery power. It still works without it, but I think I get less glitches with it in.

  • @tmburns4
    @tmburns4 Před 4 lety

    Sounds great, but can you post a link to a video with the lesson you are introducing here? Would love to watch.

    • @gbosdet1
      @gbosdet1 Před 4 lety

      Sorry for the scattered nature of it all. This is mainly where I host my videos to use in my edX course for my students. You would want to check out: The millis function: czcams.com/video/PcdNKGBwJ2A/video.html Auto Callibration Trick: czcams.com/video/PTeBZLc4FQ8/video.html The tone function: czcams.com/video/i2zMKf5xsXM/video.html Piezobuzzers: czcams.com/video/FlXtH_zqUP4/video.html Light Theremin Explanation: czcams.com/video/yylcGB5Qw_0/video.html

  • @KisorcererAMP
    @KisorcererAMP Před 4 lety

    great video! It helped me understand the concept.

  • @benz8196
    @benz8196 Před 4 lety

    Hi Mr.Bosdet @10:11 May I know why Xmax= A where are the rest of the part Sin( √k/m * t) Thank you.

    • @gbosdet1
      @gbosdet1 Před 4 lety

      A is the amplitude of the motion. The absolute value of the maximum value it can attain. Another way to write this is Xmax.

  • @chimpofm
    @chimpofm Před 4 lety

    Good day, i hope you are all well. today i have been learning ''map functions'' i have successfully mapped distance over percentage for a water tank, my question is, how do i stop my sensor reading above 100% and bellow 0% i have currently set 50mm to 0% and 500mm to 100%.

    • @gbosdet1
      @gbosdet1 Před 4 lety

      Sorry for the remarkably late reply but I just found the CZcams page where it shows unanswered comments. You've probably already figured this out but I would wrap your map with a max and a min like this: percent = min(max(map(...), 0), 100);

    • @chimpofm
      @chimpofm Před 4 lety

      @@gbosdet1yeh looking back it was a newborn question. I just made a talking rfid Motorcycle system. Chimpo mcdoodle on Facebook

  • @vincenta.2087
    @vincenta.2087 Před 4 lety

    My ears hurt now

  • @vincenta.2087
    @vincenta.2087 Před 4 lety

    You kind of look like Dexter. Great video btw

    • @gbosdet1
      @gbosdet1 Před 4 lety

      You are not the first person to comment on that. I never quite know how to take it.

  • @ahmedfayez4596
    @ahmedfayez4596 Před 4 lety

    Hello sir, how to choose the value of the capacitor? Am using 6V, 2000mAh battrey so what is the value of the capacitor should I use?

    • @daravico
      @daravico Před 4 lety

      It depends, the capacity value determines how slow or fast its going to work, while the voltage is the maximum value that it can holds. In your case, you need a capacitor with more than 6 V (10, 15, 20,...).

  • @atheer1415
    @atheer1415 Před 5 lety

    Hey ..my code has two loop one is void loop() The second is void blue05() Plz I don't how to combine them together I am working in fire fighter robot working with two mode of operation It will move to extinguish the fire automatically unless the Bluetooth connected to will according the order given from app in mobile How o combine the two loop?

  • @amanda-luellaodeorain1998

    Green screen? LOL! I like it!

  • @adrianprice-roberts9139

    face reveal at 10 subs?