All Questions
12 questions
2
votes
2
answers
1k
views
Reading and Storing Integer from Serial Monitor
Description
I wanted to understand how integers can be written and stored inside variables without the use of Serial.parseInt(). I couldn't find any code examples about this. Perhaps this is the ...
4
votes
2
answers
114
views
Arduino project to indicate soil moisture using LEDs
I've recently started going through the Head First C book. I'd like to get up to speed in terms of writing good, idiomatic, modern C. I have read the first few chapters of the Modern C book too but ...
2
votes
1
answer
287
views
Arduino Create and send data to Serial Port (Software Serial function)
I have this code written and functioning that will write out the chars in cmd to a serial port for an input of two int values. As the majority of the byte values ...
6
votes
1
answer
414
views
A GUI program for a Buzzer system using Arduino
At the outset, I am a beginner at Python, having started out about 2 weeks back.
Aim- To create a GUI program, that can adequately work as a buzzer-management system. A buzzer, like those used in ...
5
votes
1
answer
2k
views
Simon Says using Arduino UNO
I built a Simon Says game using an Arduino UNO board. This was my first "real" arduino project. I would like to know how to make it better, game mechanics and code efficiency.
...
4
votes
1
answer
240
views
Attaching an interrupt to a member function
I am making my own optical encoders. Each of them follows the exact same structure, so I figured I'd lump all the encoder processing in a class, StepCounter. ...
13
votes
2
answers
802
views
Wireless Rickroll using Arduino
This is a script I made for the ESP8266 that uses the Wi-Fi chip and creates a new Access Point every 5 seconds in order to display a message on WiFi lists on nearby devices that looks like this:
The ...
4
votes
2
answers
664
views
Arduino code to run an LED matrix over Bluetooth
I've made an Arduino program to run on my Teensy 3.1 board. It accepts characters and strings sent to a Bluetooth module (BC417) from any Bluetooth-enabled device and uses these to power certain pins ...
3
votes
1
answer
3k
views
Pong game with 8x8 matrix LED display in Arduino
I was working on programming an 8x8 matrix LED display. In particular, I am trying to make a basic version of Pong, controlled by two switches, one switch for each paddle.
A ball is generated and ...
7
votes
1
answer
2k
views
Chess countdown timer for Arduino LCD Keypad
I'm very new to C++ and Arduino, with a background in Python. I've written this code for a countdown timer and a simple menu to set the time available to each player, using button handling code from ...
4
votes
1
answer
5k
views
Arduino based ultrasonic sensor program, output HIGH to control electric motor
I am brand new to C++ and am working with the Arduino micro controller. The project I've been working on for my university requires me to write code to do the following:
If the ultrasonic sensor ...
6
votes
1
answer
437
views
Domotics control system
This is a project about a domotics control system based on arduino. Nothing great; it's only for testing myself and making stuff.
Before I started coding this, I searched on the net for some useful ...