What's new

C & C++ Pa help po sa code eto error

Liquidated ICE

Forum Veteran
Elite
Joined
Dec 27, 2018
Posts
2,167
Solutions
3
Reaction
1,187
Points
854
IMG_20230909_183802.jpg
 

Attachments

Hello! How can I assist you with your coding error? Please provide me with the details of the issue you are facing and the specific code you are encountering problems with.
 
Better kung i-post yung actual codes dito. Si bot naman ang magsusuri niyan at magre-respond, for the most part.
 
18:42:04.577 -> rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
18:42:04.577 -> configsip: 0, SPIWP:0xee
18:42:04.577 -> clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
18:42:04.577 -> mode:IO, clock div:1
18:42:04.577 -> load:0x3fff0030,len:1344
18:42:04.577 -> load:0x40078000,len:13964
18:42:04.577 -> load:0x40080400,len:3600
18:42:04.577 -> entry 0x400805f0
18:42:04.928 -> E (238) psram: PSRAM ID read error: 0xffffffff
18:42:05.432 -> Ready.



Code:
#include <PS4Controller.h>
#include <ps4.h>
#include <ps4_int.h>

#include <PS4Controller.h>
 
void setup()
{
  Serial.begin(115200);
 
  PS4.begin("1a:2b:3c:01:01:01");
  Serial.println("ready!");
}
 
void loop()
{
  if(PS4.isConnected()) {
    Serial.println("Controller connected");
  }
 
  delay(1000);
}
 
Last edited:
Back
Top