You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a sub-issue of #11. Don't close #11 until all sub-issues are resolved.
I will help with this; just want to teach the principle too is all.
Also, I recommend the industry-standard uint8_t over the Arduino byte type. Byte is an alias to it anyway: "/home/alexa/dev/AmboVent/AmboVent/3-Software/Arduino/arduino_core/arduino/hardware/arduino/avr/cores/arduino/Arduino.h": line 126:
typedef uint8_t byte;
In Eclipse, I just Ctrl + Click on any byte in the arduino source code and it jumps to its definition.
The text was updated successfully, but these errors were encountered:
ElectricRCAircraftGuy
changed the title
Code formatting: declare only 1 variable per line
Code Formatting: declare only 1 variable per line
Apr 13, 2020
This is a sub-issue of #11. Don't close #11 until all sub-issues are resolved.
I will help with this; just want to teach the principle too is all.
Also, I recommend the industry-standard
uint8_t
over the Arduinobyte
type. Byte is an alias to it anyway: "/home/alexa/dev/AmboVent/AmboVent/3-Software/Arduino/arduino_core/arduino/hardware/arduino/avr/cores/arduino/Arduino.h": line 126:In Eclipse, I just Ctrl + Click on any
byte
in the arduino source code and it jumps to its definition.Instead of:
Do:
The text was updated successfully, but these errors were encountered: