This file contains hidden or 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
| using System.Collections; | |
| using System.Collections.Generic; | |
| public class GameEvent | |
| { | |
| } | |
| public class Events | |
| { | |
| static Events instanceInternal = null; |
This file contains hidden or 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
| /************************************************************** | |
| 24bit HX711参考驱动程序 | |
| 在C中调用: | |
| extern unsigned long ReadAD(void); . . | |
| unsigned long data; | |
| data=ReadAD(); . . | |
| -------------------------------------------------------------*/ | |
| sbit ADDO = P1^5; | |
| sbit ADSK = P0^0; | |
| unsigned long ReadCount(void){ |
This file contains hidden or 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
| git diff -z --name-only --diff-filter=ACMRTUB `git merge-base HEAD master` | xargs -0 eslint |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| set -e | |
| # allow being run from somewhere other than the git rootdir | |
| gitroot=$(git rev-parse --show-cdup) | |
| # default gitroot to . if we're already at the rootdir | |
| gitroot=${gitroot:-.}; | |
| nm_bin=$gitroot/node_modules/.bin |
OlderNewer