We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had to make the following changes to make edid-reader work on my machine:
In getLinuxSystemEdids():
getLinuxSystemEdids()
// return glob('/sys/devices/pci*/0000:*/drm/card*/card*/edid').map(function (edidFileName) { return glob('/sys/devices/pci*/0000:*/*/drm/card*/card*/edid').map(function (edidFileName) {
In scan():
scan()
// return this.getSystemEdids().map(this.formatEdid).then(function (rawEdids) { return this.getSystemEdids().map(EdidReader.formatEdid).then(function (rawEdids) {
The text was updated successfully, but these errors were encountered:
Fix the scan function.
dd7302c
Applies the patches from carlipa#4 (comment)
Successfully merging a pull request may close this issue.
I had to make the following changes to make edid-reader work on my machine:
In
getLinuxSystemEdids()
:In
scan()
:The text was updated successfully, but these errors were encountered: