Skip to content

Instantly share code, notes, and snippets.

View sarthakpranesh's full-sized avatar
💻
Engineering

Sarthak Pranesh sarthakpranesh

💻
Engineering
View GitHub Profile
@sarthakpranesh
sarthakpranesh / xcode.txt
Last active November 28, 2019 05:21
installing xcode on macOS
xcode-select --install
@sarthakpranesh
sarthakpranesh / temp-to-thinkspeak.js
Last active June 27, 2019 07:46
Code for sending data to thinkspeak
var wifi = require("Wifi");
var http = require("http");
wifi.setHostname("nodeMCU-espruino");
wifi.connect(YourSSID, {password: YourPassWord}, function(err){
setTimeout(function(){
if(err !== null){
console.log("Unable to connect");
return;
}
console.log("Info: ", wifi.getIP());