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
package main | |
import ( | |
"fmt" | |
"strings" | |
) | |
var WeaponPaths = []string{ | |
"res://Scripts/SlotData.gd", | |
"res://Items/Ammunition/Ammo/Ammo.tres", |
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
# Example showing how functions, that accept tuples of rgb values, | |
# simplify working with gradients | |
import time | |
import random | |
import math | |
from neopixel import Neopixel | |
from machine import Pin | |
push_button = Pin(13, Pin.IN) # 13 number pin is input |
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
module.exports = | |
####################### | |
## Basic configurations | |
####################### | |
# Server listen port | |
serverPort: 80 | |
# RTMP server listen port | |
rtmpServerPort: 1935 |
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
javascript:(function(){var els = document.getElementsByTagName('a');for (var i=0;i<els.length;i++){ els[i].innerHTML = els[i].href };return false;})(); |
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
# Betaflight / SPRACINGF3EVO (SPEV) 3.3.0 Mar 2 2018 / 04:03:12 (177472b4f) MSP API: 1.37 | |
name MNQX95 | |
resource BEEPER 1 C15 | |
resource MOTOR 1 A00 | |
resource MOTOR 2 A01 | |
resource MOTOR 3 A02 | |
resource MOTOR 4 A03 | |
resource MOTOR 5 A06 | |
resource MOTOR 6 A07 | |
resource MOTOR 7 B00 |
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
# version | |
# BetaFlight/SPRACINGF3EVO 3.0.1 Oct 18 2016 / 10:36:44 (48b7b4f) | |
# name | |
name - | |
# mixer | |
mixer QUADX |
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
Verifying my Blockstack ID is secured with the address 1HYsEah1hRpPuwApcgTFWo32wpjQHej3vm https://explorer.blockstack.org/address/1HYsEah1hRpPuwApcgTFWo32wpjQHej3vm |
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
from gpiozero import Motor, OutputDevice | |
from time import sleep | |
motor1 = Motor(24, 27) | |
motor1_enable = OutputDevice(5, initial_value = 1) | |
motor2 = Motor(6, 22) | |
motor2_enable = OutputDevice(17, initial_value = 1) | |
motor3 = Motor(23, 16) | |
motor3_enable = OutputDevice(12, initial_value = 1) | |
motor4 = Motor(13, 18) |
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
// "johnny-five": "^0.10.13", | |
// "raspi-io": "^8.0.1", | |
var Raspi = require('raspi-io'); | |
var five = require('johnny-five'); | |
var board = new five.Board({ | |
io: new Raspi({ | |
enableSoftPwm: true | |
}) | |
}); |
NewerOlder