arduino tag

71 questions


1 answers
399 views
0
I have a quick question

#include <DHT11.h>#define DHTPIN A0#define DHTTYPE DHT11DHT11 dht(DHTPIN, DHTTYPE);void setup() { Serial.begin (9600); pinMode(8, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(A1, INP...

1 years ago

1 answers
283 views
0
Related to Arduino communication through node.js with html/javascript

First of all, I am a beginner who started JavaScript with personal study for about a month.I've been scratching and studying here and there to make a web controller, and I put a function in the button...

1 years ago

1 answers
307 views
0
The data collection code to the microSD card does not work

I'd like to use the acceleration sensors called the Spresense and BMI160 to create a code that records the sensor output on the microSD card, but it's not working.I would like to have the sensor outpu...

1 years ago

1 answers
366 views
0
FreeRTOS is not available in SPRESENSE

Currently, I am thinking of using the FreeRTOS library to make it multi-threaded with SPRESENSE's Arduino compatible.However, when I did the verification, the following error occurred and I cannot use...

1 years ago

1 answers
363 views
0
Want to record and send data simultaneously with SPRESENSE (Arduino version)

We are currently thinking of making a sensor for recording with the Arduino version of SPRESENSE.Based on the tutorial in Sony developer world, we were able to implement it so that recorded data could...

1 years ago

1 answers
294 views
0
If statement using millis function in Attiny 85 does not work as intended

The if statement below should only be executed once every 100 milliseconds, but it is executed every 200 milliseconds and is processed twice.What's wrong? if(millis()%100==0){...}

1 years ago

1 answers
449 views
0
About Switching Between DigitalWrite() and Serial1.write()

What do you want to doI would like to switch between digitalWrite() and serial1.write() in Arduino Due.However, Serial1.write() from digitalWrite() will not be able to communicate properly.If you send...

1 years ago

1 answers
460 views
0
How do I perform register operations for SPESENSE?

I would like to operate the SPESENSE register directly in the Arduino IDE 1.8.13 environment.I read the official development guide Fast digital I/O below.https://developer.sony.com/develop/spresense/d...

1 years ago

1 answers
427 views
0
I want to create a sketch that recognizes my own image (correct and incorrect images) in real time with the sense arduino IDE.

A Sony NNC window version learns its own image (Razpie V2) 80×80, datesets positive and negative images in 120 sheets and 90 sheets, respectively, and obtains a learning result accuracy=1 in 28×28 siz...

1 years ago

2 answers
284 views
0
DATA BIT WIDTH OF STEP-SYNCHRONIZATION TYPE COMMUNICATION BY VISIBLE LIGHT IN ARduino

We implement visible light communication using Arduino, but if we narrow the bit width of the data from 100 msec to 70 msec in step synchronous communication, we cannot receive it correctly.I'd like t...

- 1 - »

© 2024 OneMinuteCode. All rights reserved.