We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not right setup contrast for driver u8g_dev_ssd1309_128x64_fn File "u8g_dev_ssd1309_128x64.c" uint8_t u8g_dev_ssd1309_128x64_fn(u8g_t *u8g, u8g_dev_t *dev, uint8_t msg, void *arg) { ... case U8G_DEV_MSG_CONTRAST: u8g_SetChipSelect(u8g, dev, 1); u8g_SetAddress(u8g, dev, 0); /* instruction mode */ u8g_WriteByte(u8g, dev, 0x081); >>>>> u8g_WriteByte(u8g, dev, (*(uint8_t *)arg) >> 2); u8g_SetChipSelect(u8g, dev, 0); return 1; ... } u8g_WriteByte(u8g, dev, (*(uint8_t *)arg) >> 2) - not right, must be u8g_WriteByte(u8g, dev, (*(uint8_t *)arg));
Original issue reported on code.google.com by [email protected] on 4 Mar 2015 at 8:07
[email protected]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original issue reported on code.google.com by
[email protected]
on 4 Mar 2015 at 8:07The text was updated successfully, but these errors were encountered: