python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How this enum syntax works
I am trying to build a game for Arduino, so I searched for a starting point and got to this syntax:
enum DisplayItem upperItem = (DisplayItem)((graphicRam[x/(8/2)][y*2]>>((x%(8/2))*2))&0x3);...

Penescu Vlad
Votes: 0
Answers: 0
what is ISO C++ forbids comparison between pointer and integer?
Serial.print("ugm3 = " );
Serial.print(ugm3);
Serial.println("ug/m3" );
lowpulseoccupancy = 0;
starttime = millis();
if (Serial.available()) ...
Recovery
Votes: 0
Answers: 1
Arduino IDE does not recognize struct
I am trying to send 2 int variables from client to server using ESP-NOW.
The full code of the client is:
/**
ESPNOW - Basic communication - Master
Date: 26th September 2017
Author: Arvind Rav...
Adam B
Votes: 0
Answers: 2
Converting char starting with "0b" or "0B" to unsigned long
I am working on a project for a client so I am given a lot of code I cannot modify. I am stuff in a weird situation because of this problem. Nonetheless, I have a char with 34 indexes that I need to c...
aa_squared
Votes: 0
Answers: 2