time.google.com
time1.google.com
time2.google.com
time3.google.com
| import sys | |
| import bluetooth | |
| from PIL import Image | |
| import numpy as np | |
| def convert_image_to_escpos_raster(filepath, width=384, dither=False): | |
| # Load RGBA image and separate alpha mask | |
| img_rgba = Image.open(filepath).convert("RGBA") | |
| alpha = img_rgba.getchannel("A") |
| # Copyright 2013AD Gallus Absurd | |
| def unfalse_poem(): | |
| None is not True or False | |
| for subject in [complex(True,False)]: | |
| subject is not object | |
| for certainty in [complex(False,True)]: | |
| certainty is not Exception | |
| certainty is not license |
| sudo apt-get install avahi-daemon avahi-discover avahi-utils libnss-mdns mdns-scan |
A login is required but the source is available
https://devzone.parrot.com/repositories/entry/oss-ardrone2/trunk/linux.tar.gz?format=raw
Configuring the environment for a build is here http://tjworld.net/wiki/Linux/Kernel/ARMCrossCompileOnIntel
make -j2 O=../builds/ardrone CROSS_COMPILE=arm-none-linux-gnueabi- ARCH=arm EXTRA_AFLAGS=-mfpu=neon menuconfig
Some build issues I hit are covered here http://www.idroidproject.org/wiki/Compiling_a_Kernel
| var serialport = require('node-serialport') | |
| var sp = new serialport.SerialPort("/dev/ttyO3", { | |
| parser: serialport.parsers.raw, | |
| baud: 9600 | |
| }) | |
| sp.on('data', function(chunk) { | |
| console.log(chunk.toString('hex'), chunk.toString(), chunk) | |
| }) |
| .DS_Store |