-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#252 pigpiod should only be required if GPIOs are used
- Loading branch information
Axel Müller
committed
Apr 17, 2022
1 parent
de264f2
commit f60bd16
Showing
3 changed files
with
53 additions
and
19 deletions.
There are no files selected for viewing
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
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
49 changes: 49 additions & 0 deletions
49
src/main/java/de/avanux/smartapplianceenabler/gpio/GpioAccessProvider.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright (C) 2022 Axel Müller <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
*/ | ||
|
||
package de.avanux.smartapplianceenabler.gpio; | ||
|
||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import uk.pigpioj.PigpioInterface; | ||
import uk.pigpioj.PigpioJ; | ||
|
||
public class GpioAccessProvider { | ||
private static Logger logger = LoggerFactory.getLogger(GpioAccessProvider.class); | ||
|
||
private static PigpioInterface pigpioInterfaceInstance = null; | ||
|
||
public static PigpioInterface getPigpioInterface() { | ||
if(System.getProperty("os.arch").equals("arm")) { | ||
try { | ||
if(pigpioInterfaceInstance == null) { | ||
pigpioInterfaceInstance = PigpioJ.autoDetectedImplementation(); | ||
} | ||
return pigpioInterfaceInstance; | ||
} | ||
catch(Error e) { | ||
logger.error("Error creating PigpioInterface.", e); | ||
} | ||
} | ||
else { | ||
logger.warn("GPIO access disabled - not running on Raspberry Pi."); | ||
} | ||
return null; | ||
} | ||
|
||
} |