Renamed bme68x plasma example to Monitor

pull/194/head
ZodiusInfuser 2021-08-24 11:41:56 +01:00
rodzic c8f90ea846
commit a5d9fcf48a
4 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -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)

Wyświetl plik

@ -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

Wyświetl plik

@ -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.
*/

Wyświetl plik

@ -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.