You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I saw a youtube video where a guy is trying to use a car battery as storage for solar energy. He is using the Lilygo485 board on savvycan and I am wondering how he did that. I also want to get my board to work on savvycan, the board comes blank its just a multipurpose board, not with candlelight or the other (protocols?) names you see here like LAWICEL.
Any help appreciated thanks
The text was updated successfully, but these errors were encountered:
// Set CAN TX/RX pins
#define GPIO_CAN_TX GPIO_NUM_27
#define GPIO_CAN_RX GPIO_NUM_26
Also, somewhere in setup() set GPIO23 (aka CAN_SE_PIN) pin low, to enable the SN64HVD231 "high speed" mode:
pinMode(23, OUTPUT);
digitalWrite(23, LOW);
Compile and flash the project.
Connect the board to power/USB and a CAN bus.
On the PC, connect to the "ESP32SSID" wifi.
In SavvyCAN, click on Connection, Open Connection Window.
Click on Add New Device Connection, Network connection (GVRET), type in the IP address of:
192.168.4.1 and Create new connection.
You now have a CAN bus to Wifi connection feeding data into SavvyCAN.
This is how I use SavvyCAN 99% of the time. It is fast and no need for cables in the car or on the desk.
So I saw a youtube video where a guy is trying to use a car battery as storage for solar energy. He is using the Lilygo485 board on savvycan and I am wondering how he did that. I also want to get my board to work on savvycan, the board comes blank its just a multipurpose board, not with candlelight or the other (protocols?) names you see here like LAWICEL.
Any help appreciated thanks
The text was updated successfully, but these errors were encountered: