RGB LED colors slightly changed

This commit is contained in:
Klaus K Wilting 2020-05-01 12:39:59 +02:00
parent 8bb0682a96
commit 5818c8d1d3
2 changed files with 9 additions and 8 deletions

View File

@ -56,7 +56,7 @@ Depending on board hardware following features are supported:
- RGB LED (shows colorized status) - RGB LED (shows colorized status)
- Button (short press: flip display page / long press: send alarm message) - Button (short press: flip display page / long press: send alarm message)
- Silicon unique ID - Silicon unique ID
- Battery voltage monitoring - Battery voltage monitoring (analog read / AXP192 / IP5306)
- GPS (Generic serial NMEA, or Quectel L76 I2C) - GPS (Generic serial NMEA, or Quectel L76 I2C)
- Environmental sensors (Bosch BMP180/BME280/BME680 I2C; SDS011 serial) - Environmental sensors (Bosch BMP180/BME280/BME680 I2C; SDS011 serial)
- Real Time Clock (Maxim DS3231 I2C) - Real Time Clock (Maxim DS3231 I2C)
@ -148,12 +148,13 @@ Paxcounter generates identifiers for sniffed MAC adresses and collects them temp
**RGB LED:** **RGB LED:**
- Green each blink: seen a new Wifi device - Green: seen a new Wifi device
- Magenta each blink: seen a new BLE device - Magenta: seen a new BLE device
- Yellow quick blink: joining LoRaWAN network in progress or pending - Yellow: joining LoRaWAN network in progress or pending
- Blue blink: LoRaWAN data transmit in progress or pending - Pink: LORAWAN MAC transmit in progress
- Red long blink: LoRaWAN stack error - Blue: LoRaWAN data transmit in progress or pending
- White long blink: Known Beacon detected - Red: LoRaWAN stack error
- White: Known Beacon detected
# Display # Display

View File

@ -170,7 +170,7 @@ void ledLoop(void *parameter) {
// select color to blink by message port // select color to blink by message port
switch (LMIC.pendTxPort) { switch (LMIC.pendTxPort) {
case STATUSPORT: case STATUSPORT:
LEDColor = COLOR_RED; LEDColor = COLOR_PINK;
break; break;
case CONFIGPORT: case CONFIGPORT:
LEDColor = COLOR_CYAN; LEDColor = COLOR_CYAN;