aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 449f940fd5e069824e97ce7e0191183f49195586 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <WiFi.h>
#include <Web3.h>
#include <Util.h>
#include <Contract.h>

const char *ssid = "COBINHOOD_Guest";
const char *password = "COB0921592018";
#define MY_ADDRESS "0xBF8C48A620bacc46907f9B89732D25E47A2D7Cf7"
#define RPC_HOST "api-testnet.dexscan.app"
#define RPC_PATH "/v1/network/rpc"
#define CONTRACT_ADDRESS "0x109dc2e0964e114f03e9ce3348912b3e925b42f2"
#define DEXSCAN_TX "https://testnet.dexscan.app/transaction/"
#define LED_PIN 5

// Copy/paste the private key from MetaMask in here
const char *PRIVATE_KEY = "FA30B47A7A3D5AB6935D873FFAEB8CA5B9782D102C4094BE6DA6B7F2FC04B5BD"; //32 Byte Private key 

int wificounter = 0;
Web3 web3(RPC_HOST, RPC_PATH);

void setup_wifi();
void PushERC20Transaction();
void sendEthToAddress(double eth, const char *destination); 
void queryERC875Balance(const char *userAddress);
double queryAccountBalance(const char *address);

void setup() {
    Serial.begin(115200);

    setup_wifi();
}


void loop() {
    Contract contract(&web3, CONTRACT_ADDRESS);

    string param = contract.SetupContractData("powered()");
    string result = contract.ViewCall(&param);
    int status = web3.getInt(&result);
    Serial.printf("Status: %d\n", status);
    pinMode(LED_PIN, OUTPUT);
    digitalWrite(LED_PIN, status);
}


/* This routine is specifically geared for ESP32 perculiarities */
/* You may need to change the code as required */
/* It should work on 8266 as well */
void setup_wifi()
{
    if (WiFi.status() == WL_CONNECTED)
    {
        return;
    }

    Serial.println();
    Serial.print("Connecting to ");
    Serial.println(ssid);

    if (WiFi.status() != WL_CONNECTED)
    {
        WiFi.persistent(false);
        WiFi.mode(WIFI_OFF);
        WiFi.mode(WIFI_STA);

        WiFi.begin(ssid, password);
    }

    wificounter = 0;
    while (WiFi.status() != WL_CONNECTED && wificounter < 10)
    {
        for (int i = 0; i < 500; i++)
        {
            delay(1);
        }
        Serial.print(".");
        wificounter++;
    }

    if (wificounter >= 10)
    {
        Serial.println("Restarting ...");
        ESP.restart(); //targetting 8266 & Esp32 - you may need to replace this
    }

    delay(10);

    Serial.println("");
    Serial.println("WiFi connected.");
    Serial.println("IP address: ");
    Serial.println(WiFi.localIP());
}