Renamed bme68x plasma example to Monitor

This commit is contained in:
ZodiusInfuser 2021-08-24 11:41:56 +01:00
parent c8f90ea846
commit a5d9fcf48a
4 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
include(plasma2040_bme68x.cmake)
include(plasma2040_rotary.cmake)
include(plasma2040_monitor.cmake)
include(plasma2040_rainbow.cmake)
include(plasma2040_rotary.cmake)
include(plasma2040_stacker.cmake)

View File

@ -1,5 +1,5 @@
set(OUTPUT_NAME plasma2040_bme68x)
add_executable(${OUTPUT_NAME} plasma2040_bme68x.cpp)
set(OUTPUT_NAME plasma2040_monitor)
add_executable(${OUTPUT_NAME} plasma2040_monitor.cpp)
target_link_libraries(${OUTPUT_NAME}
pico_stdlib

View File

@ -12,6 +12,7 @@
#include "button.hpp"
/*
Uses a BME68x to monitor the ambient temperature, pressure and humidity, and show them as bars on an LED strip.
Press "A" to cycle to the next mode.
Press "B" to cycle to the previous mode.
*/

View File

@ -8,6 +8,7 @@ from pimoroni import RGBLED, Button
from breakout_bme68x import BreakoutBME68X
from pimoroni_i2c import PimoroniI2C
# Uses a BME68x to monitor the ambient temperature, pressure and humidity, and show them as bars on an LED strip.
# Press "A" to cycle to the next mode.
# Press "B" to cycle to the previous mode.