Added blinka test file for testing blinka.

This commit is contained in:
K 2024-10-07 01:23:24 +05:30
parent 0160ef6e97
commit d3f96b0a6b
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F
2 changed files with 20 additions and 3 deletions

19
blinka-test.py Normal file
View File

@ -0,0 +1,19 @@
import board
import digitalio
import busio
print("Hello, blinka!")
# Try to create a Digital input
pin = digitalio.DigitalInOut(board.D4)
print("Digital IO ok!")
# Try to create an I2C device
i2c = busio.I2C(board.SCL, board.SDA)
print("I2C ok!")
# Try to create an SPI device
spi = busio.SPI(board.SCLK, board.MOSI, board.MISO)
print("SPI ok!")
print("done!")

View File

@ -100,10 +100,8 @@ if [! dpkg -l | grep -q python3-libgpiod]; then
sudo apt install -y i2c-tools sudo apt install -y i2c-tools
fi fi
python3 ./blinka-test.py python3 blinka-test.py
echo -e "$line\nSetup complete\n$line\n" echo -e "$line\nSetup complete\n$line\n"
# sudo python3 raspi-blinka.py
echo -e "\n\n\n$line$line$line\nSetup completed.\nExecute the command 'python3 temp-calc.py' to calculate\nthe temperature.\n# DESIGNED AND ENGINEERED BY KSHITIJ.\n# END OF SCRIPT\n$line$line$line\n\n\n" echo -e "\n\n\n$line$line$line\nSetup completed.\nExecute the command 'python3 temp-calc.py' to calculate\nthe temperature.\n# DESIGNED AND ENGINEERED BY KSHITIJ.\n# END OF SCRIPT\n$line$line$line\n\n\n"