Skip to main content

Questions tagged [arduino-setup]

Filter by
Sorted by
Tagged with
1 vote
0 answers
247 views

I am a complete beginner trying my hand at a home automation project. Part of my setup includes using an Arduino UNO REV3 (A000066), and connecting two CQRobot Ocean Non-Contact Water/Liquid Level ...
Cody Kentucky's user avatar
0 votes
1 answer
200 views

Arduino 1.8.19 Is it possible to create a sub-menu inside boards.txt that would allow having the boards grouped for example by the manufacturer? If it is possible, please provide an example or at ...
Tomáš Viks Pilný's user avatar
0 votes
1 answer
420 views

Below is the entirety of my prototype code, the cycling of pin 13 is what I use to confirm the board is restarting. The board resets continually on this implementation of initialising the interrupt. ...
J Collins's user avatar
  • 295
0 votes
1 answer
78 views

Here is code I have written: #include <stdio.h> #include <ESP8266WebServer.h> #define MAX_WIFI_INIT_RETRY 50 #define WIFI_RETRY_DELAY 500 const char* wifi_ssid = "ssid"; const char* ...
Ciasto piekarz's user avatar
1 vote
1 answer
445 views

Disclaimer: I have no connection to adafruit. A friend and me want to build a little project. We want to connect an arduino to a thermal printer and then print out little fortune-cookie like messages,...
Cedric Jansen's user avatar
0 votes
2 answers
108 views

I may have bricked my Arduino Pro Micro by writing a broken code into the setup() function. When I plug my Pro Micro into my PC, I see it register a COM port for a brief moment before it disappears. ...
Bo Thompson's user avatar
2 votes
0 answers
195 views

How can I use delimiter/split serial input in a loop function? I want to use each word from the input and check a database, to check availability. #include SoftwareSerial.h> #define ...
Vian's user avatar
  • 21
0 votes
1 answer
1k views

I am trying to use the Arduino as a switch for an external circuit. I first thought about using a shift register, but this wont allow me to switch the external circuit. Here is a little sketch of ...
Tom's user avatar
  • 103