Search found 1 match

by spalex
02 Dec 2018, 23:25
Forum: ESP Easy: Hardware
Topic: ESP + Arduino like a extender (i2c)
Replies: 0
Views: 3082

ESP + Arduino like a extender (i2c)

Hi! I want to connect ESP (ESP EASY) with my Arduino by i2c wire. Now the task is simple, send an command from ESP EASY like this: http://ip/control?cmd=pcfgpio,4,1 and catch an Wire.onReceive event on Arduino and get data #include <Wire.h> void setup() { Wire.begin(4); Wire.onReceive(receiveEvent);...