Giter Club home page Giter Club logo

Comments (3)

greiman avatar greiman commented on June 9, 2024 1

The degree symbol is the last character in the System5x7 font it is character 128 decimal or 200 octal.

This code:

  oled.setFont(System5x7);
  auto tempC = 25.0;
  auto tempF = tempC*9/5 + 32;
  oled.print(tempC, 1);  // Use one decimal digit
  oled.print(" \200C is ");  // \200 is octal escape for degree symbol
  oled.print(tempF, 1);
  oled.println(" \200F\n");

Should print:

25.0 °C is 77.0 °F

from ssd1306ascii.

musapinar avatar musapinar commented on June 9, 2024

That did work. Thank you Bill.
I can see it's been documented since 2018 here : https://github.com/greiman/SSD1306Ascii/blob/master/src/fonts/System5x7.h#L144
It did not came up in the search results within the repo when I looked for "degrees". Sorry about that.
Have a great day.

from ssd1306ascii.

greiman avatar greiman commented on June 9, 2024

If you need symbols in cp437 you can use cp437font8x8 or Adafruit5x7. For Adafruit5x7 you must change this symbol in Adafruit5x7.h.

#define ADAFRUIT_ASCII96 0 // was one

To select the fonts use:
oled.setFont(cp437font8x8);
or
oled.setFont(Adafruit5x7);

The down side is that println() will no longer work since \n and \r are now this bullet, ◙, and eighth note, ♪.

You must use cursor positioning and clear line instead of println().

Also you must use escaped character codes.

from ssd1306ascii.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.