Paul
Paul
Hi, is there a reason why the library does not support the non-P version of ATmega328? With board selected as "ATmega328", sketches will not compile. To overcome this, I amended...
Minor changes to support "DIY MORE" (www.diymore.cc) i2c adaptor for LCD displays
As recommended in the wiki documentation, I tested that I can connect to the database from a different system: ``` paul@paul-desktop:~$ sudo mysql -h192.168.1.201 -ugranary_sensors -ppassword --port=3306 Welcome to the...
On [this page](https://github.com/ChuckBell/MySQL_Connector_Arduino/wiki/Troubleshooting) it suggests the following command to test connection to your database from another system: `mysql -ubob -psecret –h192.168.0.2 --port=3306` When I tried this, replacing the user, password...
See this thread on Arduino forum: [https://forum.arduino.cc/t/connect-arduino-to-bh1750/1370271](url) In short, with one sensor having ADDR->Vcc and the other having ADDR->GND, and using this code: ``` #include #include BH1750 lightSensor1(0x23); // ADDR...