Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. N

    From poker to coding

    Sounds like your making progress, already programming bots .... cool. I am segwaying into Django so I can practice my front end skills. To build front ends you need a server to test it with is my logic. I was making good progress on javascript but then when it came to fetch and asynch stuff...
  2. N

    From poker to coding

    I don't know much about java, in fact I had to google it to see where it is used. Sounds like a general purpose language so you can use it to do a lot of things. I use C the most and some python. Trying to learn Html, Css and javascript to make nice looking front ends for my hardware projects...
  3. N

    Hello world

    Welcome c programmer.
  4. N

    From poker to coding

    Is your website public. If it is post a link so we all can take a look. Good luck in your journey. Just wondering why python and not javascript as html, css and javascript all work together.
  5. N

    JavaScript Can not figure out how streaming works

    In my case i have an iphone. I can synch my photos to icloud. I found some code on github that will download pics from icloud. So i can automate that to do it periodically. Probably not a easy as that .... but should be doable.
  6. N

    JavaScript Can not figure out how streaming works

    About your photos. Can you synch them to the cloud then get a script to download them to a directory on your pc ?
  7. N

    Greetings

    Hello and good luck, you can learn a lot by staying up all night. The next day though may be tough. lol
  8. N

    JavaScript Can not figure out how streaming works

    The camera is an Ov2640, 2 Mega Pixel sensor. It is really a camera sensor module, not a full blown complete stand alone camera. I think that's what you are thinking, like a webcam or security camera. The camera module plugs into the esp32 board. The esp32 provides the software that sets up the...
  9. N

    JavaScript Can not figure out how streaming works

    The camera itself connects through a connector built on the esp32 board, so it is hard wired. So you could think of the whole thing as the "camera" . Then you would connect to it via wifi to a LAN I guess one could connect via BT but I have not. There are example programs that streams frames...
  10. N

    JavaScript Can not figure out how streaming works

    I'm not using localhost. The microcontroller is on my LAN with an address of 192.168.86.30 I'm sure you would pick up microcontrollers pretty quickly. They have a lot more resources (ram, flash) now such that you can program them in python and even javascript.
  11. N

    JavaScript Can not figure out how streaming works

    Clear enough to move on I think : ). That was kind of a rabbit hole . Thanks for your help. You are very knowledgeable so it has been nice to meet you. Not using an emulator. The esp32 is part of my LAN once it connects to wifi and is issued an ip address by my router. I've attached the...
  12. N

    JavaScript Can not figure out how streaming works

    I was talking about using the debugger in dev tools on the browser to see how the get request gets initialed. You thought maybe the answer was in the code i left out. I thought you meant browser code I did not include in my post. Like you said the get request is done in the background by the...
  13. N

    JavaScript Can not figure out how streaming works

    I wish it was in the code I left out then I could mark this thread "problem solved" I would of seen that code get executed using the debugger. The server is getting a request but I don't know how that's being done. Here is all the html,css and js. Only elements with class ="default-action"...
  14. N

    JavaScript Can not figure out how streaming works

    The system works perfectly. I am getting around 24 frames/sec on 640 x 480 resolution. It is a lot of code to go through especially if you can not duplicate it. Plus it would be a lot of time on your part. I used the developer tools to step through the browser code and it doesn't go any...
  15. N

    JavaScript Can not figure out how streaming works

    How does the browser communicate with the server to start streaming? I see how the server communicates with the client but not how the client communicates with the server to start/stop streaming.
  16. N

    JavaScript Canvas drawing issue

    Nice expansion on that code. I like the way you got it to snap and the grid lines are nice ! I think that is a cool learning project.
  17. N

    JavaScript Can not figure out how streaming works

    It is very interesting to me too because I doubt very much this can all be done in the background. I will try to dig deeper into this mystery. But here is the server side code which is just a microcontroller with a camera as a peripheral, an esp32. This is the code that registers the...
  18. N

    JavaScript Canvas drawing issue

    Nice job on that, pretty cool
  19. N

    JavaScript Can not figure out how streaming works

    I am trying to figure out how the browser code is controlling the streaming of images from my server . I am fairly new to web technologies, markup languages and javascript. I am streaming images from a camera to a browser. To start the stream the user presses a button which executes javascript...
Back
Top Bottom