Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fr4nkfletcher/matrixportal_weatherstation
An interactive weather station using the Adafruit Matrix Portal M4 and a BME280 sensor to display temperature, humidity, pressure, and altitude on a 64x32 LED matrix.
https://github.com/fr4nkfletcher/matrixportal_weatherstation
adafruit-matrixportal bme280 matrixportal weather-station
Last synced: 24 days ago
JSON representation
An interactive weather station using the Adafruit Matrix Portal M4 and a BME280 sensor to display temperature, humidity, pressure, and altitude on a 64x32 LED matrix.
- Host: GitHub
- URL: https://github.com/fr4nkfletcher/matrixportal_weatherstation
- Owner: Fr4nkFletcher
- License: mit
- Created: 2024-08-02T17:10:59.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T18:47:37.000Z (6 months ago)
- Last Synced: 2024-11-07T06:37:38.003Z (2 months ago)
- Topics: adafruit-matrixportal, bme280, matrixportal, weather-station
- Language: Python
- Homepage:
- Size: 7.51 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Adafruit MatrixPortal Weather Station
======================================.. image:: https://github.com/Fr4nkFletcher/Adafruit-MatrixPortal-Weather-Station/blob/main/img/IMG_0524.jpeg
:alt: Weather Station
:width: 600px
:align: leftOverview
--------An interactive weather station using the Adafruit MatrixPortal M4 and a BME280 sensor to display temperature, humidity, pressure, and altitude on a 64x32 LED matrix.
.. image:: https://cdn-learn.adafruit.com/assets/assets/000/111/881/original/led_matrices_Adafruit_MatrixPortal_M4_Pinout.png
:alt: Matrix Portal PinoutComponents Required
-------------------- Adafruit Matrix Portal M4
- 64x32 LED Matrix
- BME280 Sensor
- Jumper wires.. image:: https://github.com/Fr4nkFletcher/Adafruit-MatrixPortal-Weather-Station/blob/main/img/bme.jpg?raw=true
:alt: BME pinout
:width: 300px
:align: rightGetting Started
---------------Hardware Setup
~~~~~~~~~~~~~~1. Connect the Adafruit MatrixPortal M4 to the 64x32 RGB LED matrix.
2. Power the MatrixPortal M4 using a USB-C cable connected to your computer or a power source.Software Setup
~~~~~~~~~~~~~~1. Install `CircuitPython `_ on the MatrixPortal M4
2. Download the `Adafruit CircuitPython Bundle `_
3. Copy the following libraries to the ``lib`` folder on your CIRCUITPY drive:* adafruit_matrixportal
* adafruit_display_text
* adafruit_bme280
* adafruit_bus_device
* adafruit_registerConnect the BME280 Sensor
~~~~~~~~~~~~~~~~~~~~~~~~~1. Connect the BME280 sensor to the Matrix Portal using I2C:
* VIN to 3.3V
* GND to GND
* SCL to SCL
* SDA to SDAUpload the Code
~~~~~~~~~~~~~~~1. Copy the ``code.py`` file from this repository to your CIRCUITPY drive.
2. The MatrixPortal should do the rest from here, otherwise reset.