arduino-ide

    1热度

    1回答

    Arduino新手,我制作了this keyestudio(迷你坦克机器人)套件。我正尝试将我的第一个草图上传到电路板。验证去罚款,但上载过程失败,出现以下消息: Sketch uses 5340 bytes (16%) of program storage space. Maximum is 32256 bytes. Global variables use 291 bytes (14%) o

    -1热度

    2回答

    这是我上传程序时得到的结果。我将蓝牙模块连接到我的Arduino UNO板。 AVRDUDE:ser_open():无法打开装置 “\ \ COM5。”:网络位置不能达到。有关网络故障排除的信息,请参阅Windows帮助。 问题上传到板上。有关建议,请参见http://www.arduino.cc/en/Guide/Troubleshooting#upload。

    1热度

    1回答

    我是EF新手,在看了教程之后,好像我可以保存数据就好,但不知道要检索它的代码。我的类看起来像 public class Item { [Key] public int index { get; set; } public string name; public List<string> type; public List<string> def;

    0热度

    1回答

    我使用arduino IDE自一年旧版本1.5.8 我更新了arduino的版本(由于旧版本中的一些错误)后,我得到此错误甚至当我编译一个空的默认草图: C:\program files (x86)\arduino\hardware\tools\avr\bin\../lib/gcc/avr/4.9.2/../../../../avr/bin/ar.exe: core\wiring_pulse.S.

    0热度

    1回答

    int ColumnPins = 4; //How many column pins int RowPins = 5; //How many row pins int Columns[] = {0, 1, 2, 3}; //Column pinNumbers int Rows[] = {4, 6, 7, 8, 9}; //Row pinNumbers void setup() {

    0热度

    1回答

    我正在尝试制作this project并在Processing(Firmata)中使用Arduino库进行串行通信。对于这个项目,它需要一个上拉电阻,Arduino模拟引脚也具有上拉电阻,并且需要使用代码启用。虽然我尝试了很多次,但仍然无法正常工作。我想知道,Arduino库是否能够启用上拉电阻?有没有人以前做过? 我的传感器一端连接到5V,另一端接地和A0。 我上传了standardFirmat

    0热度

    1回答

    我试图将一个字节数组转换为String并使用PrintWriter将它写入文件(仅用mc检查它的值,我需要String中的内容) 我的问题总结了: //-77 is "equivalent" to 179 or 0xb3 (i also tried those using ByteArrayOutputStream, where these are valid values) byte[] b

    0热度

    1回答

    我正在关注如何管理Orange explorer LoRa Kit的教程https://youtu.be/FP3iz2Hnv2k?list=PLlR5m9QWl2p_EPn3JITOF0pQsFuzOdle1。 而对于在工具 - >卡类型中选择卡的类型,我得到一个错误,如:下载时出错http://downloads.arduino.cc/packages/package_index.json

    1热度

    1回答

    我想了解套接字编程的基础知识,并使用我发现的指南中的一些代码,但我得到编译错误。代码和错误显示如下 #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #define PORT "21467" int main(void) { int status; struct addrinfo hints; s

    0热度

    3回答

    我想在列分开我的数据,我的数据是 column1 1.1.1 Eastern express highway 1.1.2 weater way 2.1 water 2.1.2 land 2.2 sand 我的输出应该 column1 column2 column3 1.1 1 Eastern express highway 1.1 2 weater way