Code Monkey home page Code Monkey logo

ducatipanigalecanbus's People

Contributors

renatobo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ducatipanigalecanbus's Issues

Add custom PID name and channel? (Not an issue - but there is no Discussion Tab)

Hello again :)

Lets say I wanted to add a high speed channel of data, into HLT - labeled "Spark Knock", which updates as fast as RPM, I already have this data coming into your ESP32 code and displayed on a screen, so no problems there. How would I go about doing that? (the right way).

I could probably fumble through the code and get it working, one way or another, but I would prefer to take an existing unused channel, rename everything, and see it in the HLT data file. What would be even better is if I could add or "hijack" and existing graphic on the overlaid video.

What do you think?

BLE_DEVICE_ID - Not Declared

Hey Renato, I am getting a "BLE_DEVICE_ID" not declared error with stock code.

I searched for it, and found some lower case, so changed those to upper case, and it solved the problem. Should that be a problem? Maybe only a problem with Arduino IDE?

Examples:
char BLE_DEVICE_ID[12]; // was char ble_device_id[12];

sprintf(BLE_DEVICE_ID, "%s-%04X", BLE_DEVICE_ID_PREFIX, chip); // was sprintf(ble_device_id, "%s-%04X", BLE_DEVICE_ID_PREFIX, chip);

NimBLEDevice::init(BLE_DEVICE_ID); // was NimBLEDevice::init(ble_device_id);

Feature: read temperature of tires

Inspired by https://github.com/MagnusThome/RejsaRubberTrac but using a single read and not a matrix with device, for example a MLX90614

A Simple sketch is

#include <Wire.h>
#include <Adafruit_MLX90614.h>

Adafruit_MLX90614 mlx = Adafruit_MLX90614();

void setup()
{
  Serial.begin(115200);
  mlx.begin();
  Serial.println("ObjTemp AmbTemp");
}

void loop()
{
  Serial.print(mlx.readObjectTempC());
  Serial.print(" ");
  Serial.print(mlx.readAmbientTempC());
  Serial.println();
  delay(100);
}

Other libraries

Issues encountered so far

Inspired by the good work at https://github.com/MagnusThome/RejsaRubberTrac

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.