Bulldog
Bulldog copied to clipboard
Bulldog is a GPIO API for the Beaglebone Black written in Java
- Added support for newer kernels - Fixed error in PCA9685Pwm (disable instead of enable)
This library doesn't work with 4.X kernels. I figured out that a small adjustment in the [BBBSysFs.java](https://github.com/Datenheld/Bulldog/blob/master/bulldog.board.beagleboneblack/src/main/java/org/bulldog/beagleboneblack/sysfs/BBBSysFs.java) fixes the problem. With the 4.X kenels the SYSFS_DEVICES_PATH must be set to...
I was testing DigitalOutputTest. 1) Setup path: export LD_LIBRARY_PATH=/root/usr/lib/bulldoglib/libbulldog-linux:$LD_LIBRARY_PATH export CLASSPATH=$CLASSPATH:/root/usr/lib/bulldoglib/bulldog.beagleboneblack.hardfp.jar 2) Run program: root@beaglebone:~/RemoteDigitalOutputTest/bin# java DigitalOutputTest The result and error are in the following:======= Digital output test!!! Classpath=:/root/usr/lib/bulldoglib/bulldog.beagleboneblack.hardfp.jar libarypath=/root/usr/lib/bulldoglib/libbulldog-linux::/usr/java/packages/lib/arm:/lib:/usr/lib...
- listing properties -- beagleboneblack.emmc.enabled=true beagleboneblack.hdmi.enabled=true beagleboneblack.dogtag=BeagleBoard.org Debian Image 2015-03-01 iolib_setdir: PortSet_ptr P9.13 iolib_setdir: PortSet_ptr P9.14 iolib_setdir: PortSet_ptr P9.15 iolib_setdir: PortSet_ptr P9.16 iolib_setdir: PortSet_ptr P8.7 iolib_setdir: PortSet_ptr P8.8 iolib_setdir: PortSet_ptr...
After using the serial listener for some time java kills the process because of memory leak. () package bbb; import java.io.IOException; import java.io.PrintWriter; import java.net.InetAddress; import java.net.Socket; import java.net.UnknownHostException; import...
Can you assist me and others? Can we help you?
I would like to see support for the great family of Odroid devices, especially the Odroid U3. Is there a plan to support this device or will I have to...
After configuring spi on BBB rev. C (Debian Image Used) this exception is thrown from Bulldog lib java.io.IOException: Bus '/dev/spidev0.0' could not be opened 2015-05-27 21:00:33,665 ERROR [stderr](default task-16) at...
Hi, I bought one week ago the Odroid C1 (http://www.hardkernel.com/main/products/prdt_info.php) But sadly there is no possibility to control the GPIOs with java. I hope you can port your amazing project...
Currently, the I2CBusConnection allows reading and writing data. But I see no way to check if data is available before invoking the readByte() method. I tried using the connection.getInputStream().available() method,...