This repository has been archived on 2022-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
zeropod/src/display/oled.ts

10 lines
234 B
TypeScript

import { DisplayPrinter } from './interface';
export class OledPrinter implements DisplayPrinter {
public async displayContent(_content: string, _wrap: boolean): Promise<void> {
}
public clear(_turnOff: boolean): void {
}
}