Thank's Rich... Will look into this!
Btw: i use this mockup to test the oled for now.
I will use a line simulairto this to use some other font's :
from fonts.ttf import SomeFont-Foo
But nomatter what i try, i got error's about missing font.
The fonts :
from fonts.ttf import AmaticSC
from fonts.ttf import FredokaOne
Are working
import os
import time
from PIL import Image
from PIL import ImageFont
from PIL import ImageDraw
from fonts.ttf import AmaticSC
from fonts.ttf import FredokaOne
from luma.core.interface.serial import spi
from luma.core.render import canvas
from luma.oled.device import ssd1322
import RPi.GPIO as GPIO
serial = spi(port=0, device=0, gpio_DC=24, gpio_RST=25)
device = ssd1322(serial)
font25 = ImageFont.truetype(FredokaOne, 25)
font16 = ImageFont.truetype(FredokaOne, 16)
oled_volume = int(55)
str_oled_volume = (str(oled_volume))
with canvas(device) as draw:
draw.text((0, 0), "Example Text", font=font16)
draw.text((20, 30), str_oled_volume, font=font16)
time.sleep(4)
Jesper.