-
Notifications
You must be signed in to change notification settings - Fork 1
01‐Library Installation
Teeraphat Kullanankanjana edited this page Oct 28, 2023
·
1 revision
Before you use this library, you need to install it on your ESP32 board.
- ESP32.
This document is only tested on the ESP32 Devkit board; the other version or other board is not guaranteed.
- MicroPython Firmware
This document is only tested on the MicroPython firmware version 1.20 or newer; the older or other firmware might not work.
- Open the Thonny IDE.
- Go to Tools > Manage Packages.
- At the search bar, enter
MicroPython-GoogleSheet
. - Select the highlighted one and click install.
- Wait until the installation is completed.
- Download
ggsheet.py
to your computer. - Upload the
ggsheet.py
to your ESP32 board by clicking upload or using flashing tools, e.g., esptool.
Try to import the library; if it does not show "Import Error," that means the installation is successful.
from ggsheet import MicroGoogleSheet
You can proceed to the next step.