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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Box Shadow</title> | |
<style> | |
.box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; |
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
/etc/udev/rules.d/90-tty-usb.rules | |
# CP210x | |
SUBSYSTEMS=="usb", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", MODE="0666" | |
How to add udev rule for usb serial device | |
[huzhifeng@CentOS72 ~]$ minicom | |
Cannot create lockfile for /dev/ttyUSB0: 权限不够 | |
[huzhifeng@CentOS72 ~]$ su root -l | |
[root@CentOS72 ~]# ls -al /dev/ttyUSB0 | |
crw-rw---- 1 root dialout 188, 0 8月 22 08:59 /dev/ttyUSB0 |
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
# Simple AVR Makefile | |
# | |
# written by michael cousins (http://github.com/mcous) | |
# released to the public domain | |
# edited by Gino Avanzini (http://github.com/GinoAvanzini) | |
# tailored to atmega328p with an arduino programmer | |
# Makefile |