Questions tagged [hex]
9 questions
4
votes
1 answer
Are intel hex files converted into a binary format before they are written to Atmega's flash?
I have been going through some resources on bootloaders, programmers, etc (I'm very new to this specific subject) and how they work with the Atmega chips and Arduino board programming. My research may have been shallow but none of the online…
First User
- 191
- 2
1
vote
0 answers
Incorrect HEX code from DMM IR RS232
I have an Amprobe 38XR-A (sometimes seen as a meterman), these DMM's have a IR RS232 port on top and transmit a HEX code. Using the official cable I get a hex value of:
08000400500A0
I am attempting to read the IR RS232 via Serial1 of a pro-micro…
Ash_noob
- 11
- 2
1
vote
1 answer
How to convert a String to Hex array
I am trying use a HMI display. If I want to send a data, for example I want to write "TOPWAY" to 0x00000080 address it should like that:
Serial.write(0xaa); // packet head
Serial.write(0x42); // VP_N16 string write command
…
mehmet
- 297
- 2
- 19
1
vote
1 answer
Can I get the hex file from an Arduino without the .ino code
I have a CNC router table that came into my local makerspace. The board looks like it has some standard parts, but also has some parts I don't recognize. At the heart of it is an Arduino Uno. I would like to get the code from the UNO, as a back up.…
j0h
- 902
- 4
- 13
- 30
0
votes
1 answer
Send data with Serial.write() hex values
I'm using ESP32-C3 as hardware and Arduino IDE as my software core.
I receive a data from MQTT server and want to send it to another board using serial port as a hex number. However, it gets sent over serial port as ASCII characters.
Here is the…
Eric Matevosian
- 101
- 1
0
votes
0 answers
How to extract hex file from working MKR Zero
I have an Arduino MKR Zero which has working code on it, but I've lost the source. Is there a way that I can download the hex file from it, and then how can I upload it to a second so that I then have 2 working boards?
Thanks.
0
votes
1 answer
How to upload code to Arduino without a laptop
I would like to know is there a way of burning programs to microcontrollers like that on Arduino without using a computer? Like a pendrive or something? Suppose you want to update firmware on a utility end, must you carry the editable source code…
Lord Voldemort
- 21
- 3
0
votes
1 answer
When using the IRremote library- why does it say 64 bits when after converting the hex to binary it comes out to be less?
I get this code output on my Serial when the IR receiver gets a signal:
Protocol : GREE
Code : 0x01C02350000000E0 (64 Bits)
Mesg Desc.: Model: 1 (YAW1F), Power: Off, Mode: 1 (Cool), Temp: 16C, Fan: 0 (Auto), Turbo: Off, Econo: Off, IFeel: Off,…
Jeebus
- 3
- 1
-1
votes
2 answers
Send HEX number over serial
I have a RS232 device that I am able to communicate with using RealTerm on a windows PC.
The device is expecting a hex string like AA BB 03 01 03 EE
How would I send the equivalent string from an arduino? (I feel confident the arduino is wired…
spuder
- 111
- 1
- 8