Created
June 26, 2018 13:56
-
-
Save scalone/456ea07c328b540e3a366d6023daa1cc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Code from da_funk | |
def self.main_image | |
if adapter.respond_to?(:main_image) && | |
File.exists?("./shared/#{adapter.main_image}") | |
adapter.main_image | |
else | |
MAIN_BMP | |
end | |
end | |
# Suggestion on mruby-platform | |
class Display | |
def self.main_image | |
"main_#{PAX::System.model}.bmp" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment