This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIView *gView; | |
UIViewController *gViewColtroller; | |
@interface adInterstitial : NSObject | |
/// The interstitial ad. | |
@property(nonatomic, strong) GADInterstitial *interstitial; | |
@property (strong, nonatomic) GADRequest *request; | |
@end | |
@implementation adInterstitial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations | |
from typing import Optional | |
from kivy import platform | |
class SingletonMeta(type): | |
_instance: Optional[Singleton] = None | |
def __call__(self) -> Singleton: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RPi.GPIO as GPIO | |
from time import sleep | |
import os | |
from display import show_text | |
foo_top = None | |
foo_middle = None | |
foo_down = None | |