Ардуино lin шина
20 USDНужно написать код для ардуино опрос устройства по lin шине, устройство одно в шине
вот это я посылал в устройства
Serial.write(0x00); // а тут нужно 13 нулевых бит
Serial.write(0x55);// Байт синхронизации
Serial.write(0xC1); //ID
но поскольку у меня нет паузы в 13 нулевых бит устройство не отвечает.
какие данные в шине могу скинуть .
цена договорная.
-
72 3 0 Давайте попробуем
Как минимум с помощью хардварного UART-а вы это не сделаете (в AVR), но можно сделать через софтовый.
С радостью помогу вам
-

#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); //R,T
unsigned long prevTimedelay = 0;
int Delay = 0;
void setup() {
Serial.begin (115200);
mySerial.begin (19200);
}
void loop() {
if (mySerial.available()) {
delay (51);
unsigned long curTimedelay = millis ();
Delay = curTimedelay-prevTimedelay;
Serial.println (""); Serial.print (Delay); Serial.println ("ms");
prevTimedelay = millis();
while( mySerial.available()) {
byte inByte = mySerial.read();
Serial.print(" ");
Serial.print(inByte,HEX);
}
}
}
-
Current freelance projects in the category C & C++
Reverse engineering of console utilities for querying SSD controllers (Flash ID)1. Purpose of the work Extraction of the application programming interface (API) for interaction with SSD/NVMe controllers from the provided set of console utilities (Phison, Silicon Motion, Realtek, Maxiotek, Marvell, JMicron, etc.). The result should be working code in C/C++… C & C++, Desktop Apps ∙ 3 days 16 hours back ∙ 5 proposals |
Development of a Minecraft Java Seed Map / Seed Viewer for the websiteDevelopment of Minecraft Java Seed Map / Seed Viewer for the websiteProject Description A browser-based tool Minecraft Java Seed Map / Seed Viewer needs to be developed, which will work on our website and allow the user to enter a seed from Minecraft Java Edition and view an… C & C++, HTML & CSS ∙ 3 days 23 hours back ∙ 14 proposals |
Comparative analysis of the effectiveness of custom software (v2.2-field) and reference software (Meshtastic v2.x)
22 USD
Comparative analysis of the effectiveness of custom software (v2.2-field) and reference software (Meshtastic v2.x) on the identical hardware platform (ESP32 + SX1268, 2W) based on the criteria of range, throughput, link stability, and power consumption. Conduct tests with… C & C++, C# ∙ 8 days 6 hours back ∙ 2 proposals |
Consultation and audit of the current project on Odoo 19 Community EditionWe are looking for an Odoo Developer — a solo developer with experience in Odoo 19 Community Edition, including using Claude Code. We need a specialist who has successfully implemented projects in Odoo and practical experience in development using Claude Code. Important: we only… C & C++, Javascript and Typescript ∙ 11 days 7 hours back ∙ 8 proposals |
Software development for Arduino (RF modules 3–7.5 GHz, automatic frequency scanning)It is necessary to develop a system on Arduino for the automatic search of active analog video signals and the automatic tuning of the transmitter to the detected frequency.It is planned to use three separate transceiver modules: 3000–4200 MHz; 4900–6000 MHz; 6100–7500… C & C++, Embedded Systems & Microcontrollers ∙ 12 days 8 hours back ∙ 5 proposals |