mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2025-02-21 08:16:04 +01:00
Merge branch 'master' of https://github.com/DCC-EX/CommandStation-EX
This commit is contained in:
commit
33f2474c20
@ -1 +1 @@
|
|||||||
#define GITHUB_SHA "8197e2b"
|
#define GITHUB_SHA "d12714d"
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
|
|
||||||
|
|
||||||
// Maximum number of bytes we can send per transmission is 32.
|
// Maximum number of bytes we can send per transmission is 32.
|
||||||
const uint8_t FLASH SSD1306AsciiWire::blankPixels[32] =
|
const uint8_t SSD1306AsciiWire::blankPixels[16] =
|
||||||
{0x40, // First byte specifies data mode
|
{0x40, // First byte specifies data mode
|
||||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
|
||||||
|
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
// SSD1306AsciiWire Method Definitions
|
// SSD1306AsciiWire Method Definitions
|
||||||
@ -41,7 +41,7 @@ void SSD1306AsciiWire::clear(uint8_t columnStart, uint8_t columnEnd,
|
|||||||
setCursor(columnStart, r); // Position at start of row to be erased
|
setCursor(columnStart, r); // Position at start of row to be erased
|
||||||
for (uint8_t c = columnStart; c <= columnEnd; c += maxBytes-1) {
|
for (uint8_t c = columnStart; c <= columnEnd; c += maxBytes-1) {
|
||||||
uint8_t len = min((uint8_t)(columnEnd-c+1), maxBytes-1) + 1;
|
uint8_t len = min((uint8_t)(columnEnd-c+1), maxBytes-1) + 1;
|
||||||
I2CManager.write_P(m_i2cAddr, blankPixels, len); // Write up to 31 blank columns
|
I2CManager.write(m_i2cAddr, blankPixels, len); // Write up to 15 blank columns
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,7 +60,7 @@ The configuration file for DCC-EX Command Station
|
|||||||
// is set (recommended), that password will be used for AP mode.
|
// is set (recommended), that password will be used for AP mode.
|
||||||
// The AP mode password must be at least 8 characters long.
|
// The AP mode password must be at least 8 characters long.
|
||||||
//
|
//
|
||||||
// Your SSID may not conain ``"'' (double quote, ASCII 0x22).
|
// Your SSID may not contain ``"'' (double quote, ASCII 0x22).
|
||||||
#define WIFI_SSID "Your network name"
|
#define WIFI_SSID "Your network name"
|
||||||
//
|
//
|
||||||
// WIFI_PASSWORD is the network password for your home network or if
|
// WIFI_PASSWORD is the network password for your home network or if
|
||||||
|
Loading…
Reference in New Issue
Block a user