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
| Creative Commons Legal Code | |
| CC0 1.0 Universal | |
| CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE | |
| LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN | |
| ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS | |
| INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES | |
| REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS | |
| PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM |
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
| persons: | |
| - id: ORCID:1234 | |
| full_name: Superman | |
| has_organizational_relationships: | |
| - related_to: ROR:1 | |
| relationship_type: MEMBER_OF | |
| - id: ORCID:3000 | |
| full_name: Jor El | |
| has_familial_relationships: | |
| - related_to: ORCID:1234 |
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
| id: NCBITaxon:40674 | |
| name: mammals | |
| has_subtypes: | |
| NCBITaxon:9443: | |
| name: primates | |
| has_subtypes: | |
| NCBITaxon:9606: | |
| name: humans | |
| NCBITaxon:9682: | |
| name: cats |
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
| // Define pin connections & motor's steps per revolution | |
| const int dirPin = 2; | |
| const int stepPin = 3; | |
| const int stepsPerRevolution = 200; | |
| void setup() | |
| { | |
| // Declare pins as Outputs | |
| pinMode(stepPin, OUTPUT); | |
| pinMode(dirPin, OUTPUT); |
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
| import machine, onewire, ds18x20, time | |
| class DS18B20: | |
| def __init__(self, ds_pin: int = 4): | |
| self.ds_pin = machine.Pin(ds_pin, machine.Pin.IN) | |
| self.ds_sensor = ds18x20.DS18X20(onewire.OneWire(self.ds_pin)) | |
| def read_temperature(self, verbose: bool = False) -> float: | |
| if verbose == True: |
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
| [alias] | |
| a = add | |
| ap = add -p | |
| b = branch -v | |
| bd = branch -d -v | |
| bD = branch -D -v | |
| cl = clone | |
| clr = clone --recurse-submodules |
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
| MIT License | |
| Copyright (c) 2021 @capsulecorplab | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
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 | |
| # artifacts | |
| arduinosource=arduino-1.8.13 | |
| # arduino | |
| if ! command -v arduino &>/dev/null; then | |
| if [ ! -r ~/$arduinosource ]; then | |
| curl -L "https://downloads.arduino.cc/arduino-1.8.13-linux64.tar.xz" -o ~/$arduinosource.tar.xz | |
| tar -xvf ~/$arduinosource.tar.xz -C ~/ |
NewerOlder