Merge pull request #600 from cyberman54/development
RGB LED colors slightly changed
This commit is contained in:
commit
f9bf8fdcc8
15
README.md
15
README.md
@ -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
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user