Thank you
Thank you
Explore... Chat... Share...
Dynamo wrote:I am planning to use the ESP8266 ESP-12E.
Dynamo wrote:I would like to know your opinion if there could be problems using the encoder and the gy-521 , as the encoder will make a lot of interference when rotating, right?
#include "Wire.h"
void setup(){
Serial.begin(115200);
while(!Serial){} // Waiting for serial connection
Serial.println();
Serial.println("Start I2C scanner ...");
Serial.print("\r\n");
byte count = 0;
Wire.begin();
for (byte i = 8; i < 120; i++)
{
Wire.beginTransmission(i);
if (Wire.endTransmission() == 0)
{
Serial.print("Found I2C Device: ");
Serial.print(" (0x");
Serial.print(i, HEX);
Serial.println(")");
count++;
delay(1);
}
}
Serial.print("\r\n");
Serial.println("Finish I2C scanner");
Serial.print("Found ");
Serial.print(count, HEX);
Serial.println(" Device(s).");
}
void loop() {}
It takes about 20-25 seconds for home assistant c[…]
I tried to upgrade tof my sonoff basic R2 with the[…]
a problem Perhaps you want to define "Probl[…]
Rebooting your router will not give you a faster I[…]
There are no other notifications from esptool.py i[…]
Using the Arduino IDE, you'll learn how to set up […]
In this project, you will post to Twitter using an[…]
In this project, we will build a water level contr[…]
I guess I'm late, but I had the same problem and f[…]
Last night I received my first D1 Minis for a lear[…]
Although I am aware that this is an old post, I fe[…]