-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✨ (cert): Investigation Day 2 #126
Conversation
98bacde
to
4db77c8
Compare
|
||
void Bluetooth::start() | ||
{ | ||
printf("Bluetooth example\n\n"); | ||
char text[max_buffer_size] = {0}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable text
is assigned a value that is never used.
|
||
void Bluetooth::start() | ||
{ | ||
printf("Bluetooth example\n\n"); | ||
char text[max_buffer_size] = {0}; | ||
uint16_t text_length; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused variable: text_length
f2fa091
to
7c55702
Compare
7c55702
to
7b332cf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM -- quand on intégrera tout ça en vrai drivers/libraries il faudra pas oublier de update les spikes et tests
- Converse via bluetooth on computer - Use sound by enabling equalizer
- Choice on command - Get answer
- Calibration of sensors seperated - updateSensorsStatus now returns value
✨ (cert): Add cert2 from emc_lcd_leds_mot ✨ (cert): Battery and Still alive message - Add batteries level - Duration with hours and minutes ✨ (cert): Add BLE - BLE Beacon, named LekaBeacon - Add delay of 10s to check ble mac address - Add std:: before chrono due to ambiguous use ✨ (cert): Add Audio - Play wav file on haptic actuator - Need to speed up SD frequency (25000000Hz) ✨ (cert) Add bluetooth in main loop - Message via bluetooth - Can play audio via bluetooth ✨ (cert): Add RFID main loop - Remove a printf in RFID lib ✨ (cert): Add Touch main loop ✨ (cert): Choice of features - Use of #define for features and #if/#endif to apply
- Use example bluetooth echo via com
7b332cf
to
db2ac04
Compare
Code Climate has analyzed commit db2ac04 and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 100.0% (50% is the threshold). This pull request will bring the total coverage in the repository to 100.0% (0.0% change). View more on Code Climate. |
|
Copy of emc_lcd_leds_motors