The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
198 views

Serial.write and Serial.println return different values? Cannot use correct ones

I have a text file on an SD card, and I am trying to print the lines to the serial monitor. This Code Works: #include <SPI.h> #include <SD.h> File myFile; void setup() { ...
0
votes
3answers
228 views

Program got so many errors about expected ) or ; before either

This is my first time to try program arduino, and I am clueless. I have a friend who told me about things work, and he told me the programming language is C (or similar to C) which we have learned in ...
0
votes
1answer
307 views

arduino program got error expected //primary-expression before ')' token error: //expected ';' before '}' token E

#include "pulse-sensor-arduino.h" #include "Arduino.h" #define PulseSensorbegin int pulsePin = 0; int blinkPin = 13; int fadePin = 5; int fadeRate = ...
0
votes
2answers
61 views

Simple word translator, return error: invalid array assignment

I know this is not a good question. But I am clueless with this error : invalid array assignment (at function convert). For extra information, I involved a lot of copying/pasting programs I haven't ...
0
votes
1answer
75 views

Simple Text input using 5 buttons

So I have to get this function done but I'm not so bright and got confused. (excuse me! I'm total noob) The function is basically inputing text using five buttons, directional buttons and an ok ...
0
votes
1answer
137 views

Slice string at “:”

I need to slice a string (eg- 4:288:18464:288:4) at ":" into an array({4, 288, 18464, 288, 4}) I used the following code, but its giving only '4' in the serial monitor when "4:288:18464:288:4," is ...