Companies Home Search Profile

Embedded MicroPython from Ground Up™

Focused View

Israel Gbati,BHM Engineering Academy

7:30:35

216 View
  • 1. Getting the best out of this course.html
  • 1. Setting Up Python.mp4
    06:37
  • 2. Printing a Statement.mp4
    05:41
  • 3. Working with Variables.mp4
    06:41
  • 4. Working with Lists.mp4
    03:37
  • 5. Experimenting with Arithmetic Operators.mp4
    07:31
  • 6. Working with Conditions.mp4
    07:35
  • 7. Working with Loops.mp4
    14:46
  • 8. Working with Functions.mp4
    05:56
  • 9. Dictionaries.mp4
    08:15
  • 10. Implementing Classes.mp4
    05:17
  • 11. Adding more Methods to the Class.mp4
    04:45
  • 12. Understanding the Class Init Method.mp4
    04:47
  • 13. Inheriting from a Class.mp4
    08:02
  • 14. More on Inheritance.mp4
    10:42
  • 1. Getting the Required Tools.mp4
    07:38
  • 2. Installling the Required Tools.mp4
    09:38
  • 1. Accessing the Microcontroller using a Terminal.mp4
    06:40
  • 2. Accessing the Microcontroller using rshell.mp4
    04:52
  • 3. Setting an IDE for MicroPython Development.mp4
    05:55
  • 4. Getting the Required Documentation for STM32 Development.mp4
    04:17
  • 1. Overview of ARM Cortex-M General Purpose InputOutput Module.mp4
    07:24
  • 2. Exploring the MicroPython GPIO Class (Part I).mp4
    20:15
  • 3. Exploring the MicroPython GPIO Class (Part II).mp4
    02:54
  • 4. Developing the GPIO Output Driver.mp4
    04:19
  • 5. Developing the GPIO Input Driver.mp4
    04:41
  • 1. Understanding STM32 Timers.mp4
    09:32
  • 2. Implementing Background Threads using Timers.mp4
    09:20
  • 3. Generating Precise PWM Signals using Timers.mp4
    08:13
  • 4. Generating Precise PWM Signals of changing Dutycycles.mp4
    03:36
  • 5. Developing the Timer Output Compare Driver.mp4
    12:08
  • 6. Developing the Timer Input Capture Driver.mp4
    10:52
  • 1. Developing the Watchdog Timer Driver.mp4
    24:35
  • 1. Developing the RealtimeClock Driver.mp4
    11:32
  • 1. Introduction to Analog to Digital Conversion.mp4
    04:02
  • 2. Developing the ADC Driver.mp4
    12:01
  • 3. Developing the ADC Periodic Sampling Driver.mp4
    06:07
  • 4. Reading Internal Channels Temperature, VBAT, VREF.mp4
    09:53
  • 1. Overview of the UART Protocol.mp4
    07:43
  • 2. Developing the UART Transmit(TX) Driver.mp4
    11:37
  • 3. Developing the UART Receive(RX) Driver.mp4
    02:43
  • 1. Understanding Interrupts.mp4
    19:44
  • 2. Developing the External Interrupt (EXTI) Driver.mp4
    10:49
  • 1. Understanding the SPI Protocol.mp4
    11:19
  • 2. Developing the SPI Driver- Analyzing the Slave Device (ADXL345).mp4
    05:30
  • 3. Implementing the SPI Read function.mp4
    22:59
  • 4. Implementing the SPI Write function.mp4
    05:12
  • 5. Implementing the slave intialization function.mp4
    11:55
  • 6. Testing the ADXL345 SPI Driver.mp4
    11:27
  • 1. Understanding the I2C Protocol.mp4
    09:21
  • 2. Developing the I2C Driver - Scanning the Bus for connected Slaves.mp4
    07:59
  • 3. Implementing the I2C Read function.mp4
    04:02
  • 4. Implementingthe I2C Write and Initialization fucntions.mp4
    04:32
  • 5. Testin g the ADXL345 I2C Driver.mp4
    03:07
  • 1. Closing Remarks.html
  • Description


    Develop Embedded Drivers and Firmware using the Python Programming Language

    What You'll Learn?


    • Develop Embedded Drivers and Firmware using the Python Programming Language
    • Mix Python with C/C++
    • Develop General Purpose Input/Output (GPIO)Drivers
    • Develop Power Management Drivers
    • Develop General Purpose Timer Drivers
    • Develop Timer Output Compare Drivers
    • Developer Timer Input Capture Drivers
    • Develop PWM Timer Drivers
    • Develop RealTime Clock (RTC) Drivers
    • Develop Watchdog Timer (WDG) Drivers
    • Develop Analog-to-Digital Converter(ADC) Drivers
    • Develop Analog-to-Digital Converter (ADC) Time Triggered Drivers
    • Develop Digital-to-Analog Converter (DAC) Drivers
    • Develop Universal Asynchronous Receiver/Transmitter (UART) Drivers
    • Develop Serial Peripheral Interface (SPI) Drivers
    • Develop Inter -Integrated Circuit (I2C) Drivers​

    Who is this for?


  • If you are an absolute beginner to embedded systems, then take this course.
  • If you are an experienced embedded developer and want to learn how to professionally develop embedded applications for ARM processors, then take this course.
  • More details


    Description

    Whether you are new to Python programming or not you need to take a look at this course as an embedded developer.

    Do you want to know how to write clean and efficient embedded drivers for stm32 microcontrollers using the python programming language?

    If so, then welcome to Embedded MicroPython from Ground Upâ„¢


    MicroPython is an efficient implementation of Python3 optimised to run on microcontrollers.


    Now, why should you ....


    Learn MicroPython as an embedded systems developer?

    1. The simplicity of the python programming language makes micropython very easy to learn.

    2. It is very easy to use, and allows you to develop complex firmware and drivers in python with few lines of code

    3. It has an extensive software library which you can import into your project to build very complex solutions. E.g. network socket programming.

    4. It is extensible with C/C++ and assembly, so you can mix assembly and c with micropython to improve code efficiency or simply implement routines that you are more comfortable implementing in low-level code.


    So with that understood, let me tell you…


                                                                          Exactly What You’re Getting


    This course can be divided into 3 major sections.


                                                                                        First Section

    The first section provides practical python essential training for embedded developers. This section is for developers who are not familiar with the python programming language and those who want to brush up on their python development skills. This is required because we need to know who to write python code before we can develop our firmware and drivers in python.

                                                                                     Second Section

    The second section deals peripheral driver development. Over here we shall develop drivers for all the standard peripherals of our STM32 microconctoller.

    We shall develop the following drivers:


    1. General Purpose Input/Output (GPIO)Drivers

    2. Power Management Drivers

    3. General Purpose Timer Drivers

    4. Timer Output Compare Driver

    5. Timer Input Capture Driver

    6. PWM Timer Driver

    7. RealTime Clock (RTC) Drivers

    8. A Watchdog Timer (WDG) Drivers

    9. Analog-to-Digital Converter(ADC) Drivers

    10. Analog-to-Digital Converter (ADC) Time Triggered Drivers

    11. Digital-to-Analog Converter (DAC) Drivers

    12. Universal Asynchronous Receiver/Transmitter (UART) Drivers

    13. Serial Peripheral Interface (SPI) Drivers

    14. Inter -Integrated Circuit (I2C) Drivers​


                                                                        Last Section


    In the final section we shall develop firmware for addressing advanced topics such as:

    • Adding Assembly Language Code to MicroPython

    • Adding C Language Code to MicroPython


    Please take a look at the full course curriculum. I hope to see you in the course.


    Who this course is for:

    • If you are an absolute beginner to embedded systems, then take this course.
    • If you are an experienced embedded developer and want to learn how to professionally develop embedded applications for ARM processors, then take this course.

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Israel Gbati
    Israel Gbati
    Instructor's Courses
    Professional embedded firmware developer. Been doing this for years, can't even remember when it started. My areas of expertise include real-time systems development, low level development, medical device architecture, embedded signal processing and embedded AI. Most of my work is based on Arm Cortex-Microcontrollers. And Oh! I am a normal guy.
    BHM Engineering Academy
    BHM Engineering Academy
    Instructor's Courses
    Bohobiom Engineering  is a  21st century Computer Engineering online Academy based in London U.K.We have experienced instructors in the areas of Assembly Programming, Hardware Engineering, Signal & Image Processing, Embedded Firmware Development, Deep Learning and other high demand 21st century skills.As of today we have trained over 35,000 happy pupils. Please take a look at our available courses and message us if you have any questions.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 53
    • duration 7:30:35
    • Release Date 2023/03/30