Search found 1 match
- 19 Dec 2014 09:11
- Forum: DOS Batch Forum
- Topic: Sending Decimal Numbers instead of their ascii equivalent
- Replies: 2
- Views: 2299
Sending Decimal Numbers instead of their ascii equivalent
Hi everyone I'm trying to send decimal numbers to one my serial com ports .. For example ; @echo off mode COM3 BAUD=9600 PARITY=n DATA=8 :main set /p x=5<nul >\\.\COM3 TYPE COM3 goto main The command above sends decimal 53 (Ascii 5 )actually ... But I want to send decimal 5 ... Is there such an oper...