From eb722fe6f14aa2c03d65ec74104665529654a1e9 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Mon, 7 Oct 2024 01:23:24 +0530 Subject: [PATCH] Added blinka test file for testing blinka. --- blinka-test.py | 19 +++++++++++++++++++ setup.sh | 4 +--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 blinka-test.py diff --git a/blinka-test.py b/blinka-test.py new file mode 100644 index 0000000..0454bde --- /dev/null +++ b/blinka-test.py @@ -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!") diff --git a/setup.sh b/setup.sh index 7502e80..c1a04a4 100755 --- a/setup.sh +++ b/setup.sh @@ -100,10 +100,8 @@ if [! dpkg -l | grep -q python3-libgpiod]; then sudo apt install -y i2c-tools fi -python3 ./blinka-test.py +python3 blinka-test.py 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"