-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New demos added. #295
base: master
Are you sure you want to change the base?
New demos added. #295
Conversation
Hi Ricx8, |
I'm using the pudding A9G for the first time and i'm stuck at compiling projects. I get a host of errors as though some files are missing, with "missing operand" as the last error. Hoping you could help some how. Thanks |
Sure! what os are you compiling the demos? |
I'm compiling For windows 10 |
Unfortunately I compile then on Linux so I haven't try on Windows... Did you follow this tutorial step by step? |
@RicX8 , How would you go about getting the time and date from the GPS data once you achieve lock? Could you add that to the gpsSimpleTest demo. Thanks. |
Thanks ,@RicX8 was able to compile code on windows, problem with github exempting some files when using direct download. Still trying to get the hang of this board tho . does it require an external MCU?? |
@dtekluva No. It does not required any external chip. That is what I like about this chip. The problem is that there is not too much documentation out there so you have to dive into the examples a C codes.... |
@andyman2240 Right know I don't have too much time but here is how you do it.
so type something like: I know! there is not documentation for that!! anyway I hope that helps you :) |
Hello again guys, sorry to be a bother. But after loading code into the device it seems to no longer have perform any activities. Even the indication lights go no longer flash. please any ideas. |
"/test/setLocation.php?location=A9G:443_v23" // [GET] Replace this with your path |
Sorry for the late reply, i actually did not make any success using the AI tjinker board, So i defaulted to a Nano, Neo 6m, and Sim 800l. I'll like to know your experience. @CallaDai |
Hello, |
Hi @mkf118 sorry i switched to using an atmega with sim800l for my GPRS project because i really couldn't figure the AI thinker board out. If you can't too, i don't know how far along you are on your project but you might also be better off switching. |
Hi |
ey, could u solve it ? I want to use it but i dont wanna configure the certificate. |
Can you be more precise? You just have to replace the link with the one you want to request. If you have more questions keep in mind I haven't do anithing with this chip in a long time |
I am sorry. I want to connect to a server but I don't have much experience so I was trying your code but I don't know how to configure the SSL certificate. The server is Heroku. |
Got it. So basically the server that you are trying to connect NEEDS to have a certificate already (of course). Then you can get the certificate with a command like this:
You can see that I got the certificate of Google. If you check my code Am I answering your question? |
@Xoffio Hello, can you help me to make ssl post request to firebase? I successfully make GET request but my post request is fail - "ssl read fail: -6". My post request: |
@ismavg Hello! I had a problem with my Get request too. You should specify the number of bytes to receive per line: |
I wrote two new demos:
gpsSimpleTest: this demo only shows the GPS data and change light when restart. It is very simple for beginners to understand.
httpsConnection: some people including me. had or are having problems to understand the SSL demo. This demo connect to a website and send a POST or GET, very well documented. This demo closes #225