MakerGram Logo

    MakerGram

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups

    [Solved] Why STM Microcontroller are Popular?

    General Discussion
    mcu
    3
    4
    661
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 0
      0pencircuit last edited by salmanfaris

      Why STM microcontrollers are getting more popular these days? the best material to start with STM?

      1 Reply Last reply Reply Quote 0
      • kowshik1729
        kowshik1729 last edited by

        @0pencircuit The answer to your question brings in many parameters to be discussed. No product can become a hit in the market just like that. It involves lot of technical support and some of the best marketing strategies for a product to become popular. But, as we discuss more about technical stuff in here I would give some brief specifications of STM32 why it became a hit in market for learning embedded systems.

        1. Board is designed in such a way that it can be interfaced very easily with Arduino IDE and through it's HAL's like STM32 Cube.

        2. Excellent community support for STM32.

        3. If you observe the size of STM32 chip it's really pretty small which enables it's usage for designing really small and qualitative commercial grade products.

        It is super easy to learn and doesn't involves hard macro forms( to be simple "Syntax"). The best way to learn this board is to download this course. As far as I researched this course has given me good path to learn STM32. They teach you all the concepts very carefully. Download the course from this Torrent Link

        0 1 Reply Last reply Reply Quote 1
        • salmanfaris
          salmanfaris last edited by salmanfaris

          Hi @0pencircuit ,

          Actually the STM (STMicroelectronics) is the company name who makes the STM32 is a family of 32-bit Microcontroller based on ARM architecture and it comes in a wide variety of models and the selection depends on your applications.

          en.stm32_cl1734.png
          Source : st.com

          1 Reply Last reply Reply Quote 1
          • 0
            0pencircuit @kowshik1729 last edited by

            @kowshik1729 thanks bro

            1 Reply Last reply Reply Quote 1
            • First post
              Last post

            Recent Posts

            • Hi team,

              Any one have experience in Altium schematic designing.
              I am facing some issue in Hierarchy->harness in Schematic.
              The offpage number for harness is not showing, and while generation the smart PDF if we click the harness port /green box the page want to go there automatically, but that also not working.

              • read more
            • D

              @salmanfaris thank you so much man, I'll try this and update you shortly. Thank you once again.

              Best,
              Dipu

              • read more
            • Hi @dipu_varghese ,

              Here is the sample input from the binary edge impulse inference,

              Predictions (DSP: 16 ms., Classification: 1 ms., Anomaly: 2 ms.): idle: 0.91016 snake: 0.08203 updown: 0.00391 wave: 0.00391 anomaly score: -0.067”

              And from here for example we can try to get the updown values only by attaching the device to another controller and read the Serial string directly.

              void setup() { // Start serial communication at 9600 baud Serial.begin(9600); } void loop() { // Wait until there is data available on the serial port while (!Serial.available()) { // Do nothing } // Read the input string from the serial port String inputString = Serial.readStringUntil('\n'); // Find the position of the "updown" value in the input string int updownPos = inputString.indexOf("updown:"); // If the "updown" value was found in the input string if (updownPos >= 0) { // Extract the "updown" value from the input string String updownString = inputString.substring(updownPos + 8, inputString.indexOf('\n', updownPos)); // Convert the "updown" value to a float float updownValue = updownString.toFloat(); // Output the "updown" value Serial.println(updownValue); } }

              The sketch should then output the "updown" value, which is 0.08203.

              Hope this will be helpful, let me know if you need more clarification.

              • read more
            • D

              @salmanfaris any updates?

              Best,
              Dipu

              • read more
            • D

              @salmanfaris Hope you're doing well, did you get sometime to work on this?

              Best,
              Dipu

              • read more
            By MakerGram | A XiStart Initiative | Built with ♥ NodeBB
            Copyright © 2023 MakerGram, All rights reserved.
            Privacy Policy | Terms & Conditions | Disclaimer | Code of Conduct