This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0 | |
SECTION | |
2 | |
HEADER | |
9 | |
$INSUNITS | |
70 | |
4 | |
9 | |
$ACADVER |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Grbl 1.1g ['$' for help] | |
ok | |
$0=40 | |
$1=25 | |
$2=0 | |
$3=1 | |
$4=0 | |
$5=0 | |
$6=0 | |
$10=3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acl SSL_ports port 443 | |
acl Safe_ports port 80 # http | |
acl Safe_ports port 21 # ftp | |
acl Safe_ports port 443 # https | |
acl Safe_ports port 70 # gopher | |
acl Safe_ports port 210 # wais | |
acl Safe_ports port 1025-65535 # unregistered ports | |
acl Safe_ports port 280 # http-mgmt | |
acl Safe_ports port 488 # gss-http | |
acl Safe_ports port 591 # filemaker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BR2_arm=y | |
BR2_arm1176jzf_s=y | |
BR2_DL_DIR="$(HOME)/dl" | |
BR2_CCACHE=y | |
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y | |
BR2_KERNEL_HEADERS_4_14=y | |
BR2_BINUTILS_VERSION_2_30_X=y | |
BR2_GCC_VERSION_8_X=y | |
BR2_TOOLCHAIN_BUILDROOT_CXX=y | |
BR2_TARGET_GENERIC_HOSTNAME="rpi0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[xboxdrv] | |
#evdev=/dev/input/js0 | |
#silent=true | |
[ui-buttonmap] | |
a=KEY_A | |
b=KEY_B | |
du=KEY_UP | |
dd=KEY_DOWN | |
dl=KEY_LEFT | |
dr=KEY_RIGHT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
XHC-HB04 Wireless MPG pendant LinuxCNC HAL module for LinuxCNC | |
Copyright (C) 2013 Frederic Rible ([email protected]) | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU Lesser General Public | |
License as published by the Free Software Foundation; either | |
version 3 of the License, or (at your option) any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// original see: github.com/gnea/grbl-Mega | |
#include "grbl.h" | |
... | |
void serial_init() | |
{ | |
// Set baud rate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires pygame and pyserial | |
import pygame | |
import os | |
import serial | |
import time | |
class KeyButton(object): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame | |
import os | |
import serial | |
import time | |
def create_screen(): | |
if os.name == "nt": | |
return pygame.display.set_mode((320, 200)) | |
else: |
NewerOlder