Skip to content

Instantly share code, notes, and snippets.

@brentpicasso
brentpicasso / manual_OBDII.lua
Last active April 19, 2018 15:19
Manual OBDII query
--Implements a simple OBDII engine in lua scripting, with a configurable delay between PIDs.
-- IMPORTANT: Ensure built-in OBDII is turned off in Setup
--
--500K baud. set your baud rate here.
initCAN(0, 500000)
--standard 11 bit PID request 0x7DF
--extended 29 bit PID request 0x18DB33F1
--standard 11 bit PID response 0x7E8
--extended 29 bit PID response 0x18DAF110
@brentpicasso
brentpicasso / RT_serial_integration.lua
Last active April 5, 2018 17:06
RaceTechnology DL1 serial integration
-----------------------------------------------------------------
--Race Technology Serial Data stream interface for PodiumConnect
--Customize your analog and rpm channels in setup()
--GPS position, altitude, speed, and accelerometer channels
--are built-in
--https://www.race-technology.com/wiki/index.php/General/SerialDataFormat
-----------------------------------------------------------------
--set to true for metric speed and altitude units
metric = false
@brentpicasso
brentpicasso / SmartyCAM_GPS_mapping.lua
Last active July 26, 2018 16:28
SmartyCAM GPS CAN mapping research
--SmartyCAM GPS channels research
--Latitude / Longitude are confirmed
--GPS Satellite and GPS DOP (dilution of precision) are somewhat confident
--Need GPS lock status
--Need UTC / Timestamp
latId = addChannel('SC_GPSLat', 10, 6, -180, 180)
lonId = addChannel('SC_GPSLon', 10, 6, -180, 180)
gsat1Id = addChannel('SC_GPSSats', 10, 0, 0, 20)
gpsdopId = addChannel('SC_GPSDOP', 10, 0, 0, 10)
@brentpicasso
brentpicasso / RaceCapture_GPS_IMU_CAN_broadcast.lua
Created November 15, 2017 23:57
Broadcast GPS and IMU data over CAN bus
--This script broadcasts current GPS and IMU channels over CAN
setTickRate(20)
function sendCAN(can, id, data)
local res = txCAN(can, id, 0, data,100)
if res == 0 then println('send CAN res ' ..res) end
end
function split32(val)
return bit.band(val, 0xFF), bit.band(bit.rshift(val,8), 0xFF), bit.band(bit.rshift(val,16),0xFF),bit.band(bit.rshift(val,24),0xFF)
@brentpicasso
brentpicasso / lap_simulator.lua
Created October 6, 2017 17:49
Lap simulator script. generates laps based on elapsed distance - useful in a non-circuit environment
--Lap simulator script
--Ensure GPS Distance channel is disabled
--Ensure Race Timing is disabled
--Requires a GPS lock for proper operation
--sets the length of the lap desired, in miles.
lapLength = 1
setTickRate(10)
@brentpicasso
brentpicasso / 29_bit_obdii.lua
Created June 30, 2017 00:52
29 bit OBDII simulator
--500K baud. set your baud rate here.
initCAN(0, 500000)
--standard 11 bit PID request 0x7DF
--extended 29 bit PID request 0x18DB33F1
--standard 11 bit PID response 0x7E8
--extended 29 bit PID response 0x18DAF110
standard = false
--this function drains all pending CAN messages
@brentpicasso
brentpicasso / shiftx2_obdii_stepped_shift_light.lua
Created June 17, 2017 22:00
ShiftX2 OBDII stepped shift light
shiftx_can = 1
shiftx_id = 0xE3700
function shiftx_tx(offset, data)
txCAN(shiftx_can, shiftx_id + offset, 1, data)
sleep(10)
end
function splitWord(value)
return bit.band(value, 0xFF), bit.rshift(bit.band(value, 0xFF00),8)
end
@brentpicasso
brentpicasso / OBDII_PID_query.lua
Created May 26, 2017 22:51
OBDII PID simulator in Lua, supports 29 bit mode and 11 bit mode
--500K baud. set your baud rate here.
initCAN(0, 500000)
--standard 11 bit PID request 0x7DF
--extended 29 bit PID request 0x18DB33F1
--standard 11 bit PID response 0x7E8
--extended 29 bit PID response 0x18DAF110
standard = false
--this function drains all pending CAN messages
@brentpicasso
brentpicasso / shiftx2_color_sweep.lua
Last active June 22, 2017 20:10
Cycles ShiftX2 through all colors
sxCan = 0
sxId=0
tickRate=30
sxBright=0
r = 0
g = 0
b = 0
step = 10
@brentpicasso
brentpicasso / shiftx2_random_colors.lua
Last active June 20, 2017 19:35
ShiftX2 random colors
sxCan = 0
sxId=0
tickRate=30
sxBright=0
function rndc()
return math.random(0,255)
end
function sxOnUpdate()