How to Transfer Data/Files from Raspberry Pi Pico to Local Computer (Programmatically)

Learn how to write to files on your local computer so that you can save larger files using the Raspberry Pi Pico or Pico W in MicroPython. By the end of this video, you will be able to write/save data on your machine, such as sensor data, without having to use any storage on your Pico! You can also use the same method in this video to write files from Pico to a Local PC! This has great applications for storing large amounts of data collected by your sensors. Best of all? It is super simple and only requires some Python code.

You can find the bme280 sensor I used in the video in our Shop above.

Let’s get started!

Step 1-) Pip install the pyserial package on your desktop

You need this package to run the local Python script you need to communicate with the Pico.

You need Python on your local computer as a prerequisite.

Step 2-) Prepare Python Code on Local Computer

Create a python script on your local PC and save it wherever you like. The script will have the following content

import serial

# Configure the serial connection
port = "/dev/cu.usbmodem1101" 
baudrate = 115200
serial_connection = serial.Serial(port, baudrate)

# Open a file on your computer to write the received data
destination_file = open("/Users/mahmoodshilleh/Desktop/store_info.txt", "wb")

# Read and write data until the transfer is complete
while True:
    data = serial_connection.read(128)
    if data == b"EOF":
        break
    print(data)
    destination_file.write(data)

# Close the files and serial connection
destination_file.close()
serial_connection.close()

Some notes about this code:

  • You need to replace the port with the port for your Pico. You can find this by using the Thonny IDE and looking at the bottom right corner to see the connection port.
  • Baudrate does not need to be changed
  • The destination file is the full path to the file you have on your local computer, you can change that based on your preference. You can simply create an empty file.
  • You do not need to use 128 for the serial_connection read. This is just to specify the number of bytes the local computer accumulates before it writes the data to the file and prints it to the screen. The smaller the value the more frequently/faster it will write.
  • I specified an exit condition in the if statement but I never used it. You can use if control to exit or else the serial communication will go indefinitely.

    Save the file, and do not run until we set up the Micropython file on the Pico!

    Step 3-) Prepare Micropython Code on Pico

    You need to create a main.py file on the Pico to add the code. You may already have one. When using MicroPython, the main.py file is automatically executed on boot if it is present in the root directory of the Pico's file system. The reason we want to do this is that when we write code on the Pico with Thonny or another IDE, we actually establish a serial connection to the port in order to send the code over. We cannot, therefore, run the micropython script in Thonny in conjunction with running the Python script on our local computer since both are trying to access the same serial port at the same time, and you will get an error.

    To combat this effect, we will write the code on the main.py file in Thonny and save it, followed by unplugging and replugging the Pico. That way, there will no longer be serial communication with the Pico from Thonny and it will automatically run the script upon being powered by your computer. Hope that makes sense. It is a bit of a bootstrap way to do things but it works very simply and nicely.

    The code on your main.py file on your Pico is as follows:

    import machine
    from machine import I2C, Pin
    import time
    import uos
    
    import bme280
    
    # need this UART to read from BME and be able to send data to local computer
    uart = machine.UART(0, baudrate=115200)
    uart.init(115200, bits=8, parity=None, stop=1, tx=Pin(0), rx=Pin(1))
    uos.dupterm(uart)
    i2c=I2C(0, sda=Pin(0), scl=Pin(1), freq=400000)
    bme = bme280.BME280(i2c=i2c)
    
    while True:
        temperature, pressure, humidity = bme.read_compensated_data()
        print('{:.1f} C,{:.1f} %,{:.1f} hPa'.format(temperature/100, humidity/1024, pressure/25600))
        time.sleep(1)
    
    

    Some notes about this code:

    • You only need the bme280 library if you are using the bme280 sensor, you can download this from the package manager in Thonny.
    • We use machine library to interact with the Pico at the hardware level and uos to interact with the Pico’s operating system.
    • Time is used to manage the intervals in the while loop.
    • UART stands for Universal Asynchronous Receiver-Transmitter. It is a hardware communication interface that allows for serial communication between two devices. UART is commonly used for transmitting and receiving data between microcontrollers, embedded systems, and various peripheral devices. We need to configure some UART settings so that we can both read sensor values and transmit data over the serial port. Without this init we will run into sensor connection issues.
    • The print statement in the while loop attempts to print to the communication port, that is, it is the print statement that tries to send data to your local computer, this is the line you will need to change if you want to include other data. I would imagine most of you are using sensors/data different than Temperature, Pressure, and Humidity. You can edit the info on this line.

      Save this on the Pico and unplug and plug it back to power on your computer. It should be executing the main.py file, but it is not writing to the file yet because you have not run the script on your local computer.

      You can now run the script on your local computer as follows -> python <path to file> or python3 <path to file>

      You should start to see print statements in the terminal or cmd depending on your OS. The file will start filling up with data forever unless there is an exit condition. You can force exit a while loop with control + c

      You can improve the code considerably. But I hoped this worked for you and that you got the gist of how to send data from serial communication. Also, note that you can send already existing files, it does not have to be real-time data. You can simply send any form of bytes over the communication channel!

      This is a great backbone to do some cool work and projects. Hope it helped someone. More details and better explanations on my channel. Be sure to like, comment, and subscribe… stay tuned ;)

      Create a free account to access full content.

      All access to code and resources on ShillehTek.

      Signup Now

      Already a member? Sign In

      Explore More on Our Blog

      Implementing Google reCAPTCHA in a Simple React and Node.js App

      Implementing Google reCAPTCHA in a Simple React and Node.js App

      Learn how to protect your React applications from bots and spam with Google reCAPTCHA integration! This step-by-step tutorial...

      AWS Lambda Tutorial: Using Selenium with Chromedriver in Python

      AWS Lambda Tutorial: Using Selenium with Chromedriver in Python

      In this tutorial, I will guide you through the process of running Selenium with ChromeDriver inside an AWS...

      How to Connect MLX90614 Infrared Thermometer to Raspberry Pi Pico W: MicroPython Tutorial!

      How to Connect MLX90614 Infrared Thermometer to Raspberry Pi Pico W: MicroPython Tutorial!

      Learn how to use the MLX90614 with the Raspberry Pi Pico W and get infrared values in MicroPython.

      Raspberry Pi Pico/Pico W Free Simulator

      Raspberry Pi Pico/Pico W Free Simulator

      Discover how to simulate Raspberry Pi Pico projects using Wokwi, a free online simulator for Arduino and MicroPython....

      Interfacing the MPU6050 with Raspberry Pi Pico W in C++

      Interfacing the MPU6050 with Raspberry Pi Pico W in C++

      Interface with the MPU6050 using the Raspberry Pi Pico W in C++.

      How to Write your First C++ Program on the Raspberry Pi Pico W

      How to Write your First C++ Program on the Raspberry Pi Pico W

      Write your first C++ Program on the Pico W in a few simple steps.

      How to Use ThingSpeak with the Raspberry Pi Pico W

      How to Use ThingSpeak with the Raspberry Pi Pico W

      Learn how to create a real-time environmental monitoring system with the Raspberry Pi Pico W and ThingSpeak!

      How to Use ADS1115 with the Raspberry Pi (Part 1)

      How to Use ADS1115 with the Raspberry Pi (Part 1)

      Discover how to expand your Raspberry Pi projects by integrating the ADS1115 ADC for precise analog signal reading....

      How to Install Pip Packages in AWS Lambda Using Docker and ECR

      How to Install Pip Packages in AWS Lambda Using Docker and ECR

      Learn how to streamline AWS Lambda deployments by using Docker and Amazon Elastic Container Registry (ECR) to package...

      Create Tabular Product Descriptions on Your Shopify Store

      Create Tabular Product Descriptions on Your Shopify Store

      Enhance your Shopify store's product pages with our comprehensive guide on implementing tabular descriptions. Learn how to add a...

      Back to blog

      Leave a comment

      Please note, comments need to be approved before they are published.