1
0
Fork 0

Merge remote-tracking branch 'upstream/master' into develop

This commit is contained in:
Nick Brassel 2021-08-02 13:55:36 +10:00
commit ee3c138385
40 changed files with 2099 additions and 328 deletions

View file

@ -13,7 +13,6 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include "quantum.h"
#include "oled_display.h"
@ -62,11 +61,14 @@ void process_record_keymap_oled(uint16_t keycode) {
}
void render_wpm(void) {
char wpm_str[10];
sprintf(wpm_str, "%03d", get_current_wpm());
uint8_t n = get_current_wpm();
char wpm_counter[4];
wpm_counter[3] = '\0';
wpm_counter[2] = '0' + n % 10;
wpm_counter[1] = '0' + (n /= 10) % 10;
wpm_counter[0] = '0' + n / 10 ;
oled_write_P(PSTR(" "), false);
oled_write(wpm_str, false);
oled_write(wpm_counter, false);
}
void render_idle(void) {