mirror of
https://github.com/sinseman44/PyCNC.git
synced 2026-01-12 02:40:04 +00:00
9 lines
250 B
Python
9 lines
250 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
from hal_rpi import *
|
|
except ImportError:
|
|
print("----- Hardware not detected, using virtual environment -----")
|
|
print("----- Use M111 command to enable more detailed debug -----")
|
|
from hal_virtual import *
|