-
-
Notifications
You must be signed in to change notification settings - Fork 51
Write MicroPython examples and tools for Portenta #25
Comments
Hello @alranel So I was wondering from where I should start and I found this simple simulator where we can actually run MicroPython scripts So I developed this very basic MicroPython Script of sweep for servo motors # Using the Servo
# Make sure you have the Servo checkbox marked!
import machine
import pyb
import time
# The pyboard has four simple servo connections
servo = pyb.Servo(1)
while(1):
for x in range(-90,91):
servo.angle(x, 5000)
time.sleep_ms(15)
for x in range(90,-91, -1):
servo.angle(x, 5000)
time.sleep_ms(15) I would love to know if I am going in the right direction i.e. do we have to write MicroPython example for the Portenta board just like in the Arduino IDE it is given for all the official libraries ? |
@Chester-King that is a good start, if it works :-) If you are accepted as a GSoC student you'll get a Portenta board so that you can test your code. You'll need to connect hardware to it to test the various features. |
Hello @alranel https://github.com/Chester-King/MicroPython-NodeMCU-Installation Thanks & Regards |
Hello @alranel
Thanks & Regards |
I have uploaded the draft proposal regarding the project Write MicroPython examples and tools for Portenta on GSoC site. I request you to review it and comment on the google doc if I there is any room for improvement. Key Points of the proposal
Thanks & Regard, |
Although I didn't get selected this year. I still intend to contribute towards the code repositories of portenta when they are finalized. Thanks for the support till now. Thanks & Regard, |
Greetings,
I am Madhur Dixit, a third year student pursuing Btech in Computer Science and Engineering from Vellore Institute of Technology, Vellore, India.
I am looking forward to making valuable contributions to the Arduino and Portenta repositories.
I have worked extensively with various microcontrollers including arduino UNO, MEGA, Node MCU and raspberry pi. I am actively involved in working with IoT, Cloud and android. I have also developed various applications which involve connection of the microcontrollers to the cloud for sending and receiving information from it.The project I am interested in for the year 2020 iteration of GSoC is "Write MicroPython examples and tools for Portenta".
I support my endeavor to work on this project because I am well-versed with python on raspberry pi and C++ on arduino. I looked up examples of MicroPython scripts on the internet to perceive what exactly I was getting into. Upon seeing the data available on it, I was assured that I would be able to work on this project concerning writing examples about using MicroPython on a Portenta board and achieve optimal results.
Thanks & Regards
The text was updated successfully, but these errors were encountered: