Skip to content

Instantly share code, notes, and snippets.

View skyice78's full-sized avatar

Thean Ping Ang skyice78

  • Durabotics Inc
  • United States
View GitHub Profile
@dschep
dschep / raspbian-python3.6.rst
Last active October 24, 2023 14:57 — forked from BMeu/raspbian-python3.5.rst
Installing Python 3.6 on Raspbian

Installing Python 3.6 on Raspbian

As of January 2018, Raspbian does not yet include the latest Python release, Python 3.6. This means we will have to build it ourselves, and here is how to do it. There is also an ansible role attached that automates it all for you.

  1. Install the required build-tools (some might already be installed on your system).

@dmiddlecamp
dmiddlecamp / WifiScan.cpp
Created April 25, 2014 15:46
WifiScanner example firmware for the core
#include "WifiScan.h"
#include "application.h"
void parseScanResultToJson(WifiScanResults_t result, char *line);
void bytesToHex(unsigned char *data, int length, char* buffer);
void wipeStr(char *str, int len) {
for(int i = 0; i < len ;i++) {
str[i] = 0;
}