Datalogging 10 bit stream

Any wideband device that doesnt have its own category yet.

Moderator: Matt

Matt
Site Admin
 

Posts: 8961
Joined: Sun Jan 29, 2006 1:45 am
Location: Adelaide, Australia
Contact:

Re: Datalogging 10 bit stream

Post by Matt »

Maybe your voltage > AFR translation in the CSV file needs adjusting to be more accurate

Otherwise with the UEGO you can connect a USB>Serial converter to the serial line and feed it direct into Nistune (AEM UEGO section of this forum has the document posted)
Matt
Site Admin
 

Posts: 8961
Joined: Sun Jan 29, 2006 1:45 am
Location: Adelaide, Australia
Contact:

Re: Datalogging 10 bit stream

Post by Matt »

Also what might help is to log your voltage into the Arduino as a separate channel

Aux2.csv for example make
AEM Volt
0,0
5120,5.12

See if the voltage matches up in Aux2 using a multimeter
iyarovoy
 

Posts: 39
Joined: Wed Dec 23, 2015 3:47 pm
Location: California

Re: Datalogging 10 bit stream

Post by iyarovoy »

You can also pipe the 10bin serial stream into python via COM-X, parse it into a Nistune Supported Wideband stream, and pipe out via another COM-Y. Then configure Nistune to use a sported Wideband and select COM-Y as the communications port.

See viewtopic.php?f=31&t=3549#top post from Fri Dec 29, 2017 9:03 pm to get the python module I wrote to test out nistune coms for plx devices.
nickopok
 

Posts: 14
Joined: Thu Nov 21, 2019 7:38 am
Location: France

Re: Datalogging 10 bit stream

Post by nickopok »

If like me you have the nice idea to use Arduino Micro for wideband monitoring, because it's small and easy to hide in a car...
You will have to do this fix in order to get Nistune reading the serial reply. :evil:

Code: Select all

You can solve the DTR Problem by editing "Arduino\hardware\arduino\cores\arduino\CDC.cpp.

Just comment
if (_usbLineInfo.lineState > 0) {
at line 208 and
}
at line 216.
https://forum.arduino.cc/index.php?topi ... msg3410058
Post Reply