Logic AND: Boolean Circuits in LAD, FBD, STL and SCL

Поділитися
Вставка
  • Опубліковано 29 жов 2024

КОМЕНТАРІ • 43

  • @mortenlund1418
    @mortenlund1418 5 років тому +6

    I did not really know what about STL - thanks for this valuable information.

  • @caffeinatedinsanity2324
    @caffeinatedinsanity2324 4 роки тому +15

    Little nuance with SCL:
    Since there was no line such as
    ELSE
    TestSCL := FALSE;
    The TestSCL has been "latched" (or Set to 1), so it won't reset upon releasing both buttons.
    Another way of programming it could have been to do something like this:
    TestSCL := ("LeftHand" AND "RightHand);
    If you want to make it shorter. But anyways, I typically reserve SCL for analysis rather than for hardware control

    • @joerg385
      @joerg385 4 роки тому +1

      To make it even shorter, it's possible without the brackets ;-)
      I also want to add the detail, that the if/else statement corresponds to an SR flip-flop.

    • @caffeinatedinsanity2324
      @caffeinatedinsanity2324 4 роки тому +1

      @@joerg385 good call. The brackets (or parenthesis) were not necessary indeed.
      Also, more specifically, "elsif" along with "if" would compose the SR flip flop, since "else" includes every possibilities except the ones stated in the If and Elsif statements

  • @syeddanishraza903
    @syeddanishraza903 5 місяців тому

    Love these series thanks

  • @braincrackz
    @braincrackz 5 років тому

    you are the best. i am watching all your daily videos

  • @DrFinleySiemens
    @DrFinleySiemens Рік тому

    This was great! Sehr Danke!

  • @ngocchaule5311
    @ngocchaule5311 5 років тому +3

    Thanks you videos.

  • @simonmax3901
    @simonmax3901 5 років тому +1

    Excellent tutorial

  • @danbosak5801
    @danbosak5801 3 роки тому +2

    Hi, I can see fatal mistake at SCL circuit. When both inputs are TRUE, the output sets to TRUE, but it will never switch back to FALSE. You should add ("Test SCL":=FALSE;) into ELSE branch, or simplify all the circuit to ("Test SCL":="Right hand (red)" AND "Left hand (Green)";)

  • @quangchauminh9616
    @quangchauminh9616 4 місяці тому

    Do you have any stl language court for s7-300, sir?

  • @nardgacutan4768
    @nardgacutan4768 3 роки тому

    Thanks for the video

  • @satendrachaturvedi5739
    @satendrachaturvedi5739 9 місяців тому

    Hello sir,we are not able to understand how to structure a program in SCL language.

  • @mdmostafashahid948
    @mdmostafashahid948 2 роки тому

    very helpful tutorial 👉❤️❤️❤️❤️

  • @TheMomentumhd
    @TheMomentumhd 5 років тому +1

    Hey Can you help me code an Hex Clock? Having trouble with that

  • @busraahmed1708
    @busraahmed1708 2 роки тому

    nice from Bangladesh

  • @Olavotemrazaodenovo
    @Olavotemrazaodenovo 5 років тому

    Excellent

  • @sbibhureddy2255
    @sbibhureddy2255 3 роки тому

    Thanks sir

  • @eeepanel3970
    @eeepanel3970 4 роки тому +1

    You are great.

  • @automate7128
    @automate7128 2 роки тому

    The SCL code is not an output function, it is a set function because the "Test SCL" is only set to true and not reset.
    The code needs to be:
    IF "Right Hand (Red)" AND "Left Hand (Green)" THEN
    "Test SCL" := TRUE;
    ELSE
    "Test SCL" := FALSE;
    END_IF;
    or the easiest way
    "Test SCL" := "Right Hand (Red)" AND "Left Hand (Green)";

  • @framos9991
    @framos9991 Рік тому

    👌

  • @rezamagham4495
    @rezamagham4495 2 роки тому

    Nice

  • @eufemianojrnoble3236
    @eufemianojrnoble3236 5 років тому

    Thank you. your videos are great and informative.. may i request if you could show us "move serialize and deserialize" please

  • @munster1404
    @munster1404 4 роки тому

    What is the difference between A and O? I see both in use in STL. Usually the “O” comes after “A”

    • @hegamurl7434
      @hegamurl7434  4 роки тому +1

      "O" stands for an "Or" operation... meaning that if the result of this line OR the previous one was "TRUE", the result from this line will also be "TRUE"
      "A" stands for an "And" operation... meaning that if the result of this line AND the previous one are "TRUE", the result from this line will also be "TRUE"

  • @abdulsamathu88
    @abdulsamathu88 5 років тому +1

    Amazing:;:;

  • @kapilprasadnag6618
    @kapilprasadnag6618 3 роки тому

    Thanks ❤️❤️form India cttc Bhubaneswar Odisha

  • @febqij
    @febqij 3 роки тому

    Hi, I recently came across your channel and have already watched half of it. Very clear presentation of information. I wanted to ask a question about possible programming languages. And what is considered optimal and preferable? Does it make sense to know SQL and will it give any advantage?

  • @laifabou9613
    @laifabou9613 4 роки тому

    what is the language programtion PLC

  • @fatihtuz6052
    @fatihtuz6052 3 роки тому

    Can somebody give me good tutorial PDF of SCL STL examples or all the instruction of they have in it?
    It was very informative tutorial for me thank you Hegamurl!

  • @moustafaadam3889
    @moustafaadam3889 4 роки тому +2

    I need the name of the app you uses in explaining...

  • @rajkiran4065
    @rajkiran4065 4 роки тому

    pls make some more tutorial about STL..

  • @JoseHarris-j9w
    @JoseHarris-j9w Місяць тому

    Minnie Ways

  • @saeed2tube
    @saeed2tube 5 років тому

    Your right and left hand is wrong!

    • @hegamurl7434
      @hegamurl7434  5 років тому +1

      I flipped my camera, you are right😟

  • @alterschwede5831
    @alterschwede5831 3 роки тому

    You forgot Graph.

    • @hegamurl7434
      @hegamurl7434  3 роки тому

      GRAPH is a "special" language, that is only used in sequential machines. There are some more languages with "specialized" applications. The four in this video mainly have the same purpose (which is boolean circuits)

  • @DanielMoore-s3j
    @DanielMoore-s3j Місяць тому

    Wisozk Ways

  • @ohadurrahman9334
    @ohadurrahman9334 2 роки тому

    Nice