G-Code Lesson 1 What is G-Code?

Поделиться
HTML-код
  • Опубликовано: 28 окт 2024

Комментарии • 165

  • @ib9025
    @ib9025 6 лет назад +13

    I just started operating a cnc... so this video was very helpful. Thanks to this video , now I have a better idea of how to understand G-code.
    Thanks.

    • @wafaaramadan6024
      @wafaaramadan6024 3 года назад

      do u have a good G code course, or the rest of this video pls!

  • @KC-Shinobi
    @KC-Shinobi 5 лет назад +8

    Nice work man, this definitely is a good start in learning what the G code is all about. Gangsta shit.

  • @ronaldjerrimmy4659
    @ronaldjerrimmy4659 3 года назад

    Good information man I'm trying to kick start my memory on how to program learned the basics in Mac tech CNC and manual machine but the programming is using the noodle and man it's been a minute back to the basics for me thank you machinist

  • @Kirbythediver
    @Kirbythediver 5 лет назад +6

    professor says we are going to learn basics on Wednesday, good video

  • @naboulsikhalid7763
    @naboulsikhalid7763 6 лет назад +2

    a pretty good explanation, dissipate the fear of g=G-code programming. thanks for sharing

  • @hemashri
    @hemashri 5 лет назад +5

    Thanks so much.I learnt a lot, could'nt find the PART 2. I love to see the rest too.

  • @sergeipechorin452
    @sergeipechorin452 3 года назад +1

    Informative and short video. Good job buddy! Thanks.

  • @loorobert6430
    @loorobert6430 4 года назад +3

    Nice info Sean. Me thought of changing from manual to CNC. Age catching up. 1 more subscriber.

  • @jimburnsjr.
    @jimburnsjr. 3 года назад +1

    Not bad...we need many more very high quality example of this kind of work...it represents tremendous potential....needs to be more comprehensive and devoid of stuff that may distract from actual comprehension and retention...as well as devoid of retention mechs that may set up problems socially down the road for anyone anywhere....this is a good video.

  • @oscarlok19
    @oscarlok19 4 года назад

    This the first video I seen of your channel and is great. Thanks for the help.

  • @somchaypsp
    @somchaypsp 5 лет назад +6

    Great job,great explanation! Thank you so much!

  • @vimalraj7709
    @vimalraj7709 6 лет назад +2

    Good explanation.....sir. Its really super . I want a another video lesson 2

  • @RkardV10
    @RkardV10 7 лет назад +9

    Helped me and my class loads!! APPRECIATED - thank you

  • @peterfarmer1592
    @peterfarmer1592 Год назад

    Very useful for a beginner. 👍

  • @Marissa.aprillia
    @Marissa.aprillia 4 месяца назад

    amazing, 11 years ago, yet benefecial for today

  • @gangleweed
    @gangleweed 2 года назад

    When you transition from a manual mill to a CNC mill there is something you REALLY need to know........although it is the table that moves in the X and Y planes you must think it is the spindle that is doing the moving otherwise you will get confused with the plus and minus directions...........that means when the spindle is moving to the right the coding is all plus values (you don't show a plus sign) X20....X30....X40 etc, but when the spindle is moving to the left it is all minus values........X-20......X-30.......X-40 etc.
    For the Y direction the spindle moves towards the column and you get Y20....Y30.......Y40 etc.........moving back towards yoi and the Y values are Y-20......Y-30.....Y-40 etc.
    I spent a few days trying to get the machine table to move to the right with the right arrow jog key but the table moved to the left, which was very confusing........that is manual mill thinking........ until it was explained to me that you must forget manual milling and think the spindle is the thing moving not the table.........that became clear after a few days and with a block of polystyrene foam in the mill vice and a pointed wooden stick in the chuck to simulate a job and tool the code I wrote did the job.
    Oh yeah, I forgot.....the table surface is always your Z zero so that anything plus is always going up.

  • @jeffbeck6501
    @jeffbeck6501 9 лет назад +1

    Great info, and great organization of your presentation, but the music is way to loud, and it felt like it was in super slow motion and I kept passing out. It's better to fade in the music between scenes and fade it back out. But you make it simple. ...because it is simple. Thanks for the great info teacher.

    • @MrPatdeeee
      @MrPatdeeee 7 лет назад +2

      One step further. There is NO need for ANY music on a DIY video; UNLESS the DIY is about music. But then it should be VERY soft. NEVER loud!

  • @HassanAli-of9nv
    @HassanAli-of9nv 5 лет назад +1

    Its really awesome and much help for everyone

  • @greenpedal370
    @greenpedal370 5 лет назад +1

    Excellent introduction to G Code

  • @lalgerinoamazighe7963
    @lalgerinoamazighe7963 3 года назад

    Thanks for the lesson is very important. Please can you tell me where i can find a classes to learn more about the programming.

  • @IARRCSim
    @IARRCSim Год назад

    What is the best way to simulate g-code execution? I want to learn it on my laptop without using a CNC machine. I don't own or have access to a CNC machine to practice with.

  • @sagar6830
    @sagar6830 7 лет назад +3

    thank you for making learning easy

  • @hayahanna1
    @hayahanna1 8 лет назад +2

    have a doubt about the tool offset if we use T1 then we want use also the D1 ryt !!!!?? your not mention that there ,can you please explain about it

    • @harryt622
      @harryt622 8 лет назад

      Normally if it is T1 then you would use D1 with your G41 or G42. And H1 with the G43 height offset. That just makes it a little easier and more consistent. But you can use any D or H number with any tool. An example would be the following.
      M6 T1(call the tool, say it is a 1/2 end mill)
      M3 S3000(set the RPM)
      G54 G90 G0 X-.500 Y0(position the tool over the beginning of where you want to start)
      G43 H1 Z.200(move to .200 over the work piece)
      /M8(turn on coolant)
      G1 G98 G41 X0 D1 F25.(move to the start of the cut and activate the offset say D = .250)
      From here it would be moving to your depth in Z and making your cuts.
      If you wanted to change the offset on T1 for a different area of machining to take a little more or less of a cut you can do that by using a different H or D that is not being used by another tool. I have 400 offsets in my machines and only 40 tools. For example;
      M6 T1(call the tool, say it is a 1/2 end mill)
      M3 S3000(set the RPM)
      G54 G90 G0 X2.500 Y1.00(position the tool over the beginning of where you want to start)
      G43 H101 Z.200(the H is changed to refer to a new height offset for tool 1)
      /M8(turn on coolant)
      G1 G98 G41 X3.00 D101 F25.(the D is changed to refer to a different diameter offset for tool 1. D = .200)
      From here it would be moving to your depth in Z and making your cuts.

  • @TheRichard6537
    @TheRichard6537 4 года назад

    you are doing a good job, very helpful. thanks

  • @sjstudio6920
    @sjstudio6920 3 года назад

    What is the language used here? I like its straightforwardness and would like to learn!

  • @GCodeTutor
    @GCodeTutor 5 лет назад

    Great explanation

  • @mikaelbjornson2666
    @mikaelbjornson2666 7 лет назад +1

    Great effort, thank you for sharing your knowledge! But maybe next time, seek a little help with structuring your material. The information disposition is way crazy, with what should be the beginning of the video beeing said in the end of it, for example. But nevertheless, thank you!

  • @pietrohenriquericardo5945
    @pietrohenriquericardo5945 5 лет назад

    Good job man Part two is important for me Thanks

  • @iancrossley6637
    @iancrossley6637 5 лет назад

    Sounds like total malarkey.
    If I need to run a job I enter the following:
    -Material Thickness
    -Bit type & dia, Pass depth
    -Tool speed XY&Z
    Zero my bit to bed
    Vac on/off
    Path the objects In/Out/Center
    Optional: Hog out - spec delta.
    Position parts, home machine
    Cut job.

    • @chiquinhoreydelas
      @chiquinhoreydelas 5 лет назад

      because the machine does the g code all for you when you input these parameters, dumb dumb

  • @CliffsShed
    @CliffsShed 6 лет назад +1

    Thanks, just getting started and this helped.

  • @kingtek2546
    @kingtek2546 5 лет назад

    nice job sir, its really helpful

  • @Magikookeven
    @Magikookeven 7 лет назад +1

    This is a great video! Thanks a lot.

  • @sharma_ji_ka_ladka321
    @sharma_ji_ka_ladka321 8 лет назад +2

    hey dude i actually liked the music. where did you get it which song and which band, great video really helpful continue the good work

    • @MrPatdeeee
      @MrPatdeeee 7 лет назад

      The music was annoying to me. To each his own.

  • @richmind5867
    @richmind5867 3 года назад

    bro can you make more videos. you explain it very well

  • @NumbersAndLetterz
    @NumbersAndLetterz 6 лет назад +3

    Thanks, I learned something interesting today.

  • @sanjaysah2092
    @sanjaysah2092 6 лет назад

    Best video to study CNC

  • @gautamrana6099
    @gautamrana6099 7 лет назад

    excellent sir ji but kuch basic CNC formula for notching and branding

  • @xerotolerant
    @xerotolerant 3 года назад

    Thanks a lot sir

  • @1mondavia2
    @1mondavia2 2 года назад

    What does it mean when someone wants you to give them the G-code they sent you and want you to go to your phone inbox and give it to them for the purpose of them wanting to know you are a real person. I never heard of such a thing. Please help. I am just trying to sell something and I have no clue what that is

  • @johnstewart8849
    @johnstewart8849 4 года назад +1

    So, how many lines of positioning code does it take to carve a 2” picachou?

    • @ellischordcycles7410
      @ellischordcycles7410 4 года назад

      It depends on the complexity of the picachou

    • @johnstewart8849
      @johnstewart8849 4 года назад

      Ellis Chord Cycles Standard...nothing special...I think they are pretty uniform....just trying to get and idea: one thousand lines, or 50 for a useless figurine.

    • @ellischordcycles7410
      @ellischordcycles7410 4 года назад

      @@johnstewart8849 I'm not sure. I've just started my programming course.

  • @jhonnyfractalus6685
    @jhonnyfractalus6685 4 года назад +1

    thank you freind

  • @MrGreywolves
    @MrGreywolves 7 лет назад +4

    Thanx Sean,
    Good share very good share:)
    may ı translate? and use for my countries childeren coding lessons your video include?

  • @robertmccully2792
    @robertmccully2792 8 лет назад +3

    good starter video-- make sense.

  • @SIDEKICKONYOUTUBE
    @SIDEKICKONYOUTUBE 5 лет назад

    1:55 got confused a little bit. i was like which unit ? then i realized it was UNIT of measurement.
    2:14 why that line of code had SPEED but no UNITOFMEASUREMENT ? how will the machine know which unit to use ?

  • @dgonzz90
    @dgonzz90 6 лет назад

    Awesome info

  • @robertschmitt2228
    @robertschmitt2228 10 лет назад +1

    Thx...Helped.. to understand more..

  • @ellischordcycles7410
    @ellischordcycles7410 4 года назад

    Thanks for your sharing!

  • @faheemmansuri1
    @faheemmansuri1 8 лет назад

    nice video... it was helpful

  • @TheByron130
    @TheByron130 5 лет назад

    Very helpful vid. Thank you.

  • @mahmoudalbohofy1862
    @mahmoudalbohofy1862 6 лет назад

    very good

  • @1962arby
    @1962arby 10 лет назад +1

    I can't learn a thing with the music playing. And, as nice a person as the narrator may be, he reminds me of my high school history teacher. His monotonous speeches would put me to sleep. Maybe I would have stayed awake if he played music while he spoke.

    • @MrPatdeeee
      @MrPatdeeee 7 лет назад

      Amen and AMEN!
      Music plays NO role in DIY videos; UNLESS the DIY is about music. But even then, it should be appropriate and never LOUD! On non musical DIY's, it is VERY offensive to all too many of us. Worse: there is NO way to turn it off if we do not want to listen to it. Several RUclips authors have recently asked, If they should have (or continue to have) music. And in every case, MOST said NO!

  • @aminemon5312
    @aminemon5312 5 лет назад

    This is big help, thanks a lot.

  • @malcolmsteweezy
    @malcolmsteweezy 6 лет назад +1

    Thank you you saved my job lol

  • @ThaurusFury
    @ThaurusFury 3 года назад

    Nice explanation but the music in the background is too high.

  • @vaibhavrawat1479
    @vaibhavrawat1479 7 лет назад +1

    thanks sir this was really helpful

  • @satvika2366
    @satvika2366 7 лет назад +1

    nice vid

  • @harryt622
    @harryt622 10 лет назад +9

    You need an M3 or M4 with the S300 after the M6, otherwise the spindle does not know which way to turn. At the end of the program the tool goes to X0, Y0 at .100 above the part and stops, then the program ends. You should have the same G28 G91 Z0 to send the tool to Z home position. Plus more things but I'm bored already.

    • @robertmccully2792
      @robertmccully2792 8 лет назад +1

      shut up-- this is a beginner video-- what are you doing here,,

    • @harryt622
      @harryt622 8 лет назад +7

      Just because it is a beginner video does that excuse mistakes? Should a beginner learn to do it wrong in the first place? Should a beginner not be given necessary information? You need to shut up. What I'm doing here is helping someone that might try this code and end up damaging their machine or getting hurt.

    • @jorgealvarado7586
      @jorgealvarado7586 8 лет назад

      harryt622

    • @robertmccully2792
      @robertmccully2792 8 лет назад +4

      jorge alvarado So what your bored! Anyone can pick on beginners. We have no idea what your talking about.. and i see after your comments he stopped making videos. do you cruise around destroying people. Dude you started somewhere. We all started somewhere, no body like a smart ass. Your comments just confused us more.

    • @Zen_Modeling
      @Zen_Modeling Год назад

      @@harryt622
      I’m a Beginner & want to learn the basics for a Desktop size Sherline CNC Mill setup. ??Where is the best place to go to learn the basic process starting from Scratch??? Thank U!! Lee

  • @joshuamcintyre5087
    @joshuamcintyre5087 5 лет назад

    Thank you good video

  • @JerushaWait
    @JerushaWait 7 лет назад

    Hi there, how do you convert .txt to .gcode? I wrote the script in a plain txt file, but unsure of how to change it

  • @Almonds7
    @Almonds7 5 лет назад +1

    Heyyy where is lesson 2?? Come on, it's been 6 years!! Kidding. But seriously where is lesson 2? Lesson 1 is great but we need more lessons, hunger for information

  • @kickpublishing
    @kickpublishing 8 лет назад +1

    Actually G-Code is a scripting language and not a programming language - it is more similar in power and complexity to html than it is to C or Java

  • @ghanshyammavji1047
    @ghanshyammavji1047 7 лет назад

    which software do you use ?

  • @sulaimanmunawar5934
    @sulaimanmunawar5934 4 года назад

    THANKS SIR

  • @harikrishnan6795
    @harikrishnan6795 3 года назад

    Bro need more videos ☺️for lean plz... ❤❤❤

  • @lorenssilvestre8587
    @lorenssilvestre8587 3 года назад

    Salamat po.

  • @sunilpatoriya777
    @sunilpatoriya777 6 лет назад

    How can download this software
    Whot is the name of software
    Please help me

  • @ghost-le8hg
    @ghost-le8hg 4 года назад

    Thanks

  • @alexnikoo244
    @alexnikoo244 7 лет назад

    Thanking you for your videos

  • @gautamrana6099
    @gautamrana6099 7 лет назад

    excellent

  • @narendrabogavelli7648
    @narendrabogavelli7648 6 лет назад

    explanation is fantastic but the background music is quite annoying,unable to follow what is said clearly.

  • @painakatski9748
    @painakatski9748 5 лет назад +1

    Music name

  • @painakatski9748
    @painakatski9748 5 лет назад

    What is the music names?

  • @bigmac1598
    @bigmac1598 3 года назад

    A way to find the G spot??

  • @paulrandle9007
    @paulrandle9007 6 лет назад

    ls this the only cnc programming video you have put out?

    • @cnc411
      @cnc411  6 лет назад

      paul randle yes at the time it is. I plan on making more at some point in the near future. I am open to suggestions.

    • @cnc411
      @cnc411  6 лет назад

      Let me rephrase, this is the only video on my personal channel that I have published.

  • @bipolarweekend6193
    @bipolarweekend6193 2 года назад

    Realising i was Lookin for a different G Code my Niggas 🙏🏽😂

  • @ramuparmar3729
    @ramuparmar3729 7 лет назад

    very good tech is programs

  • @TylerDurden404
    @TylerDurden404 6 лет назад

    how do you display symbols on the LCD?
    e.g. %

    • @Tuffenough4u
      @Tuffenough4u 6 лет назад

      ruclips.net/video/K_zh85LPGu8/видео.html

  • @dheerajkumardheerajkumar1930
    @dheerajkumardheerajkumar1930 7 лет назад

    Lovely

  • @stanislasnguimatsa2555
    @stanislasnguimatsa2555 8 лет назад

    hello I would like to learn the programming language G-codes forgiveness the best software for a beginner

    • @timcobb5277
      @timcobb5277 4 года назад

      look up a forumn for mach3 they are very good since mach3 is a control program for hobbyestes that want build their own cnc and have no experence

  • @ahmedabdi4085
    @ahmedabdi4085 4 года назад

    Please make lesson 2

  • @bojan1480
    @bojan1480 6 лет назад

    Thanks man👍👍

  • @MegaJohnhammond
    @MegaJohnhammond 6 лет назад +1

    should be called, "G-code to fall asleep by"

  • @Mert-A-L
    @Mert-A-L 6 лет назад +1

    Its to never snitch

  • @GaborCsergo
    @GaborCsergo Год назад

    I think the line numbering should be deleted or changed, because the same line numbers cause an error.

  • @anthonyhandel5338
    @anthonyhandel5338 3 года назад

    Where's number 2?

  • @freefireboys4630
    @freefireboys4630 8 лет назад

    supper

  • @rlwd0164
    @rlwd0164 7 лет назад

    X as you can see here....WHERE? it does not show X, it only shows Z

    • @Buster_friendly
      @Buster_friendly 6 лет назад

      That's because he's running a lathe and not a mill.

  • @stevefrt9495
    @stevefrt9495 8 лет назад +1

    thanks you so much

  • @fdmewan1
    @fdmewan1 6 лет назад

    Does anybody know how to convert embroidery day files into gcodes??

    • @Tuffenough4u
      @Tuffenough4u 6 лет назад

      ruclips.net/video/vjGtKPDBSa8/видео.html

  • @ajcaraujo
    @ajcaraujo Год назад

    preciso de um simulador 2D de G code

  • @Datdus92
    @Datdus92 3 года назад

    Is the person narrating this also running G-code?

  • @anuragtripathi400
    @anuragtripathi400 6 лет назад +2

    why you thought to give a background music
    .......appreciate you for the video but music was annoying

  • @ACC861
    @ACC861 6 лет назад

    empty vessels make more noise, sums up the comments below who are solely aimed at correcting the codes , and forgetting that he used just a sample part program to explain the basics

  • @I.Odnamra
    @I.Odnamra 10 лет назад

    What's up with the music? Haha good video though. Basic stuff.

  • @MrPatdeeee
    @MrPatdeeee 7 лет назад +1

    Where is "Lesson 2"?

  • @stucapco9111
    @stucapco9111 9 лет назад +1

    this will not get you a job and likely HURT you. however the basics are there...
    NO, lol, next class we will be writing code outside under a tree as its a nice day.
    please do not touch the machine, your not ready yet, thanks for playing! Parents are mailing the check right?
    Good over all! Thumbs up!

  • @niranjanrout5291
    @niranjanrout5291 7 лет назад

    I am interest in cnc mc operated

  • @calabi234
    @calabi234 3 года назад

    Anyone here coz of Geto Boys

  • @vlastimilpavlan6705
    @vlastimilpavlan6705 8 лет назад +3

    Good explanation screwed up by annoying music...

    • @MrPatdeeee
      @MrPatdeeee 7 лет назад +1

      Amen and AMEN! Music has NO place in DIY videos; UNLESS the DIY is about music.

  • @mechanicalmech8243
    @mechanicalmech8243 5 лет назад

    More vedio send me thanku