Skip to content

Commit

Permalink
Merge pull request #94 from Pi4J/basic_ads1256
Browse files Browse the repository at this point in the history
 restore basic ads1256 device as a simple example if the device regit…
  • Loading branch information
taartspi authored Feb 15, 2025
2 parents 0f6bd51 + c02f967 commit 8d9f9da
Show file tree
Hide file tree
Showing 7 changed files with 1,241 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The following lists the currently supported devices within this project:
* [1602A LCD MCP23017 I2C Controller](src/main/java/com/pi4j/devices/mcp23017_lcd1602a/README.md): App uses MCP23017 to control the LCD
* [1602A_LCD_PCF8574A I2C Controller](src/main/java/com/pi4j/devices/pcf8574a_lcd1602a/README.md): App uses PCF8574A to control the LCD
* [ADS1255/ADS1256 24bit A-to-D](src/main/java/com/pi4j/devices/ads1256/README.md) (1)
* [Basic_ADS1255/ADS1256 24bit A-to-D](src/main/java/com/pi4j/devices/basic_ads1256/README.md) (1)
* [AT24C512 SEEPROM](src/main/java/com/pi4j/devices/at24c512/README.md) (1) (2)
* [BMP280 Temperature and Pressure Sensor](src/main/java/com/pi4j/devices/bmp280/README.md) (1)
* [BME280 Temperature, Pressure and Humidity Sensor (I2C & SPI)](src/main/java/com/pi4j/devices/bme280/README.md) (1)(3)
Expand Down
39 changes: 39 additions & 0 deletions assets/runBasicADS1256.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

# *
# * -
# * #%L
# * **********************************************************************
# * ORGANIZATION : Pi4J
# * PROJECT : Pi4J :: EXTENSION
# * FILENAME : runBasicADS1256.sh
# *
# * This file is part of the Pi4J project. More information about
# * this project can be found here: https://pi4j.com/
# * **********************************************************************
# * %%
# * * Copyright (C) 2012 - 2022 Pi4J
# * %%
# *
# * Licensed under the Apache License, Version 2.0 (the "License");
# * you may not use this file except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * http://www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# * #L%
# *
#
#
#
#

# See README for details


#!/usr/bin/env bash
java --module-path . --module com.pi4j.devices/com.pi4j.devices.basic_ads1256.ADS1256App $@
Loading

0 comments on commit 8d9f9da

Please sign in to comment.