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
############################################################################## | |
# tmux(1) configuration file. ┌─┬─┐ # | |
# Made for tmux 2.7 or highter │ ├─┤ # | |
# MacLemon, https://maclemon.at/ └─┴─┘ # | |
############################################################################## | |
# Command keys are case-sensitive. | |
# Prefix Key | |
# Default: C-b |
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
''' | |
# README FIRST # | |
###Goal### | |
On a Raspberry Pi, read .dat files created by STWIN.box from disk and get numpy or pandas objects to work with. | |
### Requirements ### | |
- Raspberry Pi | |
- ST-Link Debugger | |
- STWIN.box + USB-C Cable |
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
const { adapters } = require('slcan'); | |
const { dataTypes } = require('uavcan'); | |
let body = { | |
dataTypeID: 'uavcan.protocol.param.GetSet', | |
value: { | |
index: 0, | |
value: { | |
integerValue: 123 |
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
const Net = require('net'); | |
const HologramKey = process.env.HOLOGRAM_KEY | |
const HologramHost = 'cloudsocket.hologram.io' | |
const HologramPort = '9999' | |
let sendWithHologram = function(payload, topic){ | |
let HologramClient = new Net.Socket(); |
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
from multiprocessing import Process, Queue | |
import uavcan | |
from contextlib import closing | |
import tkinter | |
def node_status_callback(event): | |
print('#',event.transfer.source_node_id,': ', event.message.uptime_sec) | |
# Messages, service requests, service responses, and entire events |
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
/* | |
* exo2.cpp | |
* | |
* Created on: Oct 3, 2016 | |
* Author: sam | |
*/ | |
#include <vector> | |
#include <iostream> | |
using namespace std; |
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 serial | |
import sys | |
import wiringpi | |
from time import sleep | |
import Adafruit_Nokia_LCD as LCD | |
import Adafruit_GPIO.SPI as SPI | |
from simplemysql import SimpleMysql | |
from threading import Thread | |
from PIL import Image |
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
#!/bin/bash | |
PIDFILE=/var/run/zim_run.pid | |
case $1 in | |
start) | |
/usr/bin/python /home/pi/zim/mapa.py >/home/pi/log & | |
echo $! > ${PIDFILE}; | |
;; | |
stop) | |
kill `cat ${PIDFILE}` ;; |
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
{"version":"2.38.1-0","grid":{"layers":{"View All":{"name":"View All"},"Default layer":{"name":"Default layer"}},"xWidth":10,"yHeight":10},"modules":[{"url":"modules/types/server_interaction/webservice_search/","configuration":{"sections":{"postvariables":[{"sections":{},"groups":{"postvariables":[[{"destination":"data","filter":"none"}]]}}]},"groups":{"group":[{"url":["https://crossorigin.me/http://ttnstatus.org/gateways"],"method":["GET"],"dataType":["form"],"withCredentials":[[]],"showStatus":[[]],"button":[["button"]],"buttonlabel":["Refresh Gateways"],"buttonlabel_exec":["Refreshing Gateways..."],"onloadsearch":[["button"]],"debounce":[0],"resultfilter":["return data;"],"askConfirm":[[]],"confirmText":["Are you sure?"]}],"headers":[[{}]],"searchparams":[[{"destination":"url","fieldtype":"text"}]]}},"layers":{"View All":{"position":{"left":121,"top":0},"size":{"width":16,"height":8},"zIndex":0,"display":true,"title":"","bgColor":[255,255,255,0],"wrapper":true,"created":true,"name":"Default layer"},"Defaul |
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
"use strict"; | |
var GamePad = require( 'node-gamepad' ); | |
var Cylon = require('cylon'); | |
var controller = new GamePad( 'ps3/dualshock3' ); | |
var rover_state = { |
NewerOlder