Skip to content

Instantly share code, notes, and snippets.

@lewisdaly
Created May 29, 2018 13:36
Show Gist options
  • Save lewisdaly/4c3b841cfd446a0459e78afc88b53e7e to your computer and use it in GitHub Desktop.
Save lewisdaly/4c3b841cfd446a0459e78afc88b53e7e to your computer and use it in GitHub Desktop.
#include <Arduino.h>
#include <IotaClient.h>
String host = "https://testnet140.tangle.works";
String httpsPort = 443;
IotaClient iota_client(host, httpsPort);
void setup() {
Serial.begin(9600);
Serial.println("HELLO IOTA");
iota_client.testAddress();
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment