I am trying to install micropython on my chromebook and it's not working even with enough storage can someone help me?
Welcome to the forum
Your topic title says Arduino but the post text says Chromebook
What exactly are you trying to do ?
I am trying to code in micropython
Which Arduino board are you using ?
look through the tutorials on learn adafruit
Arduino Mega and Arduino Uno (You can do it for either one of them)
So you are saying you can program an Arduino Uno in python? Can you post a link explaining how that can be done?
it is not micropython. It's called femto-python
![]()
Thanks for the clarifaction. Also the reason is I don't know how to and I'm also not sure if you can but I'll look into that. Also are you able to do it in Arduino Mega??
I seached it up and I got that you can include a library called fempto Python but I haven't tested it yet so I think you can do it with everything
Yes, you can connect femptoPython with Arduino Uno in Arduino Create. To do this, you will need to:
- Install the femptoPython library in Arduino Create.
- Create a new Arduino project and select the femptoPython board.
- Add the femptoPython library to your project.
- Write your femptoPython code.
- Upload your code to your Arduino Uno.
Here are some more detailed instructions:
- To install the femptoPython library in Arduino Create, go to the Library Manager and search for "femptoPython". Click on the "Install" button to install the library.
- To create a new Arduino project and select the femptoPython board, go to the "File" menu and select "New". In the "Board" menu, select "femptoPython".
- To add the femptoPython library to your project, go to the "Sketch" menu and select "Include Library". In the "Library Manager" window, select the "femptoPython" library and click on the "Install" button.
- To write your femptoPython code, you can use the femptoPython documentation as a guide.
- To upload your code to your Arduino Uno, go to the "Tools" menu and select "Board". In the "Board" menu, select "femptoPython". Then, go to the "Tools" menu and select "Upload".
Here is an example of a simple femptoPython code that you can use to blink an LED on your Arduino Uno:
`Code snippetimport femptoPython
led = 13
while True:
femptoPython.digitalWrite(led, femptoPython.HIGH)
femptoPython.delay(500)
femptoPython.digitalWrite(led, femptoPython.LOW)
femptoPython.delay(500)`
done