Search Results

by tspeicher
Mon Jun 10, 2019 3:38 pm
Forum: General
Topic: SBC4 Python output to console screen
Replies: 2
Views: 60096

Re: SBC4 Python output to console screen

You 'da Man!!

Thanks, Patrick. That was the problem. I tried /dev/tty, but I was missing the '1' on the end. As soon as I did the output to /dev/tty1, it worked!!

Of course, now, I see on bootup that the Phidget says "/dev/tty1" at the top of the screen.

Thanks for your help!

-Terry
by tspeicher
Fri Jun 07, 2019 9:39 am
Forum: General
Topic: SBC4 Python output to console screen
Replies: 2
Views: 60096

SBC4 Python output to console screen

I am able to run a Python3 script at system startup on my SBC4. I added the following line in the /etc/rc.local file, right before the exit(0) line at the end: (sleep 60 ; echo $(date) >> lastboot; /usr/bin/python3 /root/testBoot. py)& Without going into a nauseous amount of detail, this line (c...