mytechnotalent / Python-For-Kids

A FREE comprehensive online Python development tutorial FOR KIDS utilizing an official BBC micro:bit Development Board going step-by-step into the world of Python for microcontrollers.
Apache License 2.0
734 stars 103 forks source link

Can I work on program to with wait and delay ? #6

Closed yashvarshney003 closed 4 years ago

yashvarshney003 commented 4 years ago

Means with command wait and delay.

mytechnotalent commented 4 years ago

Hi @yashvarshney003 you would do the following in the REPL. import utime utime.sleep(1)

Where 1 represents waiting a second you can change to any value you like.

Here is the docs: https://minipython.readthedocs.io/en/latest/utime.html

yashvarshney003 commented 4 years ago

Can I contribute by making a program demonstrating delay for repo??

mytechnotalent commented 4 years ago

Hi @yashvarshney003 this tutorial series is very specific and limited in its scope however if you would be interested I have my own fork of the original BBC MicroPython port called MiniPython. Would you like to submit a PR to the master branch for an example program which I can review? MiniPython REPO

yashvarshney003 commented 4 years ago

ok.

mytechnotalent commented 4 years ago

You will have to fork the repo and create a PR in the MiniPython REPO not this one.