Skip to main content

Questions tagged [arduino-makefile]

Filter by
Sorted by
Tagged with
2 votes
1 answer
311 views

I'm trying to read a text file (has numeric values) from SD card. The values in the file like this 87 512 255 I need to read 87 in ch1 and 512 in ch2 and 255 in ch3. Why did I get on 'SKIP_NONE' '...
stella's user avatar
  • 31
0 votes
1 answer
3k views

This is my structure program/ src/ Makefile main.ino test.h ... lib/ i2c.h In main.ino I include test.h and in test.h I'm trying to include i2c.h but it is just not working, I ...
php_nub_qq's user avatar
2 votes
1 answer
1k views

Bakground: When compiling a demo project about e-paper, I got this problem ./GxEPD/src/GxIO/GxIO_SPI/GxIO_SPI.h:39:5: error: ‘SPISettings’ does not name a type SPISettings _spi_settings; ^ ...
ar2015's user avatar
  • 173
2 votes
0 answers
767 views

I want to create a file and read it form sd card by arduino. I have used sd card module. I have used this following code. In serial monitor it says "SD card is ready to use." But it can't read or ...
habla's user avatar
  • 21
0 votes
1 answer
93 views

This is a simple usart program in avr c which just transmits a character. #include <avr/io.h> #include <util/delay.h> #define F_CPU 16000000UL #define BAUD 9600 #define BAUD_PRESCALLER ((...
YsK's user avatar
  • 3