Skip to content

Instantly share code, notes, and snippets.

@Near32
Near32 / OV7670_initalisation.ino
Last active May 27, 2019 13:47
OV7670 + ARDUINO
#define SIO_C 2
#define SIO_D 4
#define SIO_CLKDELAY 100
void setup (void)
{
Serial.begin(9600);

Debugging Python within Docker

Often you need to run debugger within docker. It many cases it looks like this:

import pdb; pdb.set_trace()

Or: